summaryrefslogtreecommitdiff
path: root/test/mallocrep1.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/mallocrep1.go')
-rw-r--r--test/mallocrep1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mallocrep1.go b/test/mallocrep1.go
index e78a9ce9c..2f9900d94 100644
--- a/test/mallocrep1.go
+++ b/test/mallocrep1.go
@@ -87,7 +87,7 @@ func AllocAndFree(size, count int) {
}
func atoi(s string) int {
- i, xx1 := strconv.Atoi(s);
+ i, _ := strconv.Atoi(s);
return i
}