diff options
Diffstat (limited to 'src/lib/exec/exec.go')
-rw-r--r-- | src/lib/exec/exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/exec/exec.go b/src/lib/exec/exec.go index 29f25df65..c2b7bdd59 100644 --- a/src/lib/exec/exec.go +++ b/src/lib/exec/exec.go @@ -139,7 +139,7 @@ Error: // Setting options to 0 waits for p to exit; // other options cause Wait to return for other // process events; see package os for details. -func (p *Cmd) Wait(options uint64) (*os.Waitmsg, os.Error) { +func (p *Cmd) Wait(options int) (*os.Waitmsg, os.Error) { if p.Pid < 0 { return nil, os.EINVAL; } |