Commit 64b1aa12 authored by Mikio Hara's avatar Mikio Hara

net: drop unnecessary cast

Change-Id: I9b058472f5b4943db6e6f1c1243411ce61624c18
Reviewed-on: https://go-review.googlesource.com/9916Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 754e98cb
...@@ -225,7 +225,7 @@ func (fd *netFD) Read(p []byte) (n int, err error) { ...@@ -225,7 +225,7 @@ func (fd *netFD) Read(p []byte) (n int, err error) {
return 0, err return 0, err
} }
for { for {
n, err = syscall.Read(int(fd.sysfd), p) n, err = syscall.Read(fd.sysfd, p)
if err != nil { if err != nil {
n = 0 n = 0
if err == syscall.EAGAIN { if err == syscall.EAGAIN {
...@@ -307,7 +307,7 @@ func (fd *netFD) Write(p []byte) (nn int, err error) { ...@@ -307,7 +307,7 @@ func (fd *netFD) Write(p []byte) (nn int, err error) {
} }
for { for {
var n int var n int
n, err = syscall.Write(int(fd.sysfd), p[nn:]) n, err = syscall.Write(fd.sysfd, p[nn:])
if n > 0 { if n > 0 {
nn += n nn += n
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment