mirror of
https://github.com/golang/go
synced 2024-11-19 23:44:43 -07:00
Corrected a print statement from printing netfd to fd.
R=iant CC=golang-dev https://golang.org/cl/1805041
This commit is contained in:
parent
71ed4eb7a5
commit
a9a24d4d8a
@ -230,7 +230,7 @@ func (s *pollServer) Run() {
|
|||||||
} else {
|
} else {
|
||||||
netfd := s.LookupFD(fd, mode)
|
netfd := s.LookupFD(fd, mode)
|
||||||
if netfd == nil {
|
if netfd == nil {
|
||||||
print("pollServer: unexpected wakeup for fd=", netfd, " mode=", string(mode), "\n")
|
print("pollServer: unexpected wakeup for fd=", fd, " mode=", string(mode), "\n")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
s.WakeFD(netfd, mode)
|
s.WakeFD(netfd, mode)
|
||||||
|
Loading…
Reference in New Issue
Block a user