needless semicolons

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=23967
CL=23970
This commit is contained in:
Rob Pike 2009-01-30 15:10:22 -08:00
parent 122ed3e988
commit 25a2b3626d
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ type request struct {
replyc chan int; replyc chan int;
} }
type binOp func(a, b int) int; type binOp func(a, b int) int
func run(op binOp, req *request) { func run(op binOp, req *request) {
reply := op(req.a, req.b); reply := op(req.a, req.b);

View File

@ -9,7 +9,7 @@ type request struct {
replyc chan int; replyc chan int;
} }
type binOp func(a, b int) int; type binOp func(a, b int) int
func run(op binOp, req *request) { func run(op binOp, req *request) {
reply := op(req.a, req.b); reply := op(req.a, req.b);