commit | 4f61fc96b2788be7cbfc6f7a72acef3d3feeeb6c | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Sat Sep 04 10:36:13 2010 +1000 |
committer | Rob Pike <r@golang.org> | Sat Sep 04 10:36:13 2010 +1000 |
tree | 094ba2238e5596358b6ae4db5789c7d1fee4ecb7 | |
parent | cd8f4cd2068964bfa12e10cd094d41ddd725af4f [diff] [blame] |
test: remove semiocolons. The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041
diff --git a/test/sigchld.go b/test/sigchld.go index 214e72b..09188fc 100644 --- a/test/sigchld.go +++ b/test/sigchld.go
@@ -10,6 +10,6 @@ import "syscall" func main() { - syscall.Kill(syscall.Getpid(), syscall.SIGCHLD); - println("survived SIGCHLD"); + syscall.Kill(syscall.Getpid(), syscall.SIGCHLD) + println("survived SIGCHLD") }