summaryrefslogtreecommitdiff
path: root/misc/cgo/stdio/fib.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/stdio/fib.go')
-rw-r--r--misc/cgo/stdio/fib.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/cgo/stdio/fib.go b/misc/cgo/stdio/fib.go
index 972057e11..1e2336d5b 100644
--- a/misc/cgo/stdio/fib.go
+++ b/misc/cgo/stdio/fib.go
@@ -22,7 +22,7 @@ func fibber(c, out chan int64, i int64) {
runtime.LockOSThread();
if i == 0 {
- c <- i;
+ c <- i
}
for {
j := <-c;