1
0
mirror of https://github.com/golang/go synced 2024-10-02 20:41:21 -06: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 {
netfd := s.LookupFD(fd, mode)
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
}
s.WakeFD(netfd, mode)