mirror of
https://github.com/golang/go
synced 2024-11-23 00:20:12 -07:00
Unterminated declaration breaks build.
R=rsc APPROVED=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=16688 CL=16690
This commit is contained in:
parent
7abfcd981f
commit
38c2472609
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user