]> Cypherpunks repositories - gostls13.git/commitdiff
Unterminated declaration breaks build.
authorCary Hull <chull@google.com>
Wed, 8 Oct 2008 00:25:32 +0000 (17:25 -0700)
committerCary Hull <chull@google.com>
Wed, 8 Oct 2008 00:25:32 +0000 (17:25 -0700)
R=rsc
APPROVED=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=16688
CL=16690

src/lib/net/fd_linux.go

index 05b7250e590c33073d57003c8e1f1cbdb01c1cbe..5f9687c85ff0be4a86593d8b8d2874436d7b63a3 100644 (file)
@@ -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];