From ce8f31e051cc4c78c42d63bc5215c1d31d385eb5 Mon Sep 17 00:00:00 2001 From: andy pan Date: Fri, 15 Jun 2018 11:26:37 +0800 Subject: [PATCH] Auto stash before merge of "develop" and "origin/develop" --- examples/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/main.go b/examples/main.go index 3d9e26d..413cb36 100644 --- a/examples/main.go +++ b/examples/main.go @@ -34,8 +34,8 @@ import ( var sum int32 func myFunc(i interface{}) error { - n := i.(int) - atomic.AddInt32(&sum, int32(n)) + n := i.(int32) + atomic.AddInt32(&sum, n) fmt.Printf("run with %d\n", n) return nil } @@ -73,7 +73,7 @@ func main() { // submit tasks for i := 0; i < runTimes; i++ { wg.Add(1) - p.Serve(i) + p.Serve(int32(i)) } wg.Wait() fmt.Printf("running goroutines: %d\n", p.Running())