1
0
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:
Vinu Rajashekhar 2010-07-10 14:40:48 -07:00 committed by Ian Lance Taylor
parent 71ed4eb7a5
commit a9a24d4d8a

View File

@ -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)