Commit a9a24d4d authored by Vinu Rajashekhar's avatar Vinu Rajashekhar Committed by Ian Lance Taylor

Corrected a print statement from printing netfd to fd.

R=iant
CC=golang-dev
https://golang.org/cl/1805041
parent 71ed4eb7
......@@ -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)
......
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