summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCary Hull <chull@google.com>2008-10-07 17:25:32 -0700
committerCary Hull <chull@google.com>2008-10-07 17:25:32 -0700
commit21a88579da9656f91a99eec9f895368557695f0e (patch)
tree84437f40c5c91d2a674cc0206b5eb18651162d60
parentd1d51db00fa498c62e0c1abb812878bf8a38acdb (diff)
downloadgolang-21a88579da9656f91a99eec9f895368557695f0e.tar.gz
Unterminated declaration breaks build.
R=rsc APPROVED=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=16688 CL=16690
-rw-r--r--src/lib/net/fd_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/net/fd_linux.go b/src/lib/net/fd_linux.go
index 05b7250e5..5f9687c85 100644
--- a/src/lib/net/fd_linux.go
+++ b/src/lib/net/fd_linux.go
@@ -39,7 +39,7 @@ export func NewPollster() (p *Pollster, err *os.Error) {
}
func (p *Pollster) AddFD(fd int64, mode int, repeat bool) *os.Error {
- var ev syscall.EpollEvent
+ var ev syscall.EpollEvent;
var already bool;
ev.fd = int32(fd);
ev.events, already = p.events[fd];