summaryrefslogtreecommitdiff
path: root/test/malloc1.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/malloc1.go')
-rw-r--r--test/malloc1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/malloc1.go b/test/malloc1.go
index eee596e3c..62329fe57 100644
--- a/test/malloc1.go
+++ b/test/malloc1.go
@@ -19,7 +19,7 @@ var chatty = flag.Bool("v", false, "chatty");
func main() {
malloc.Free(malloc.Alloc(1));
if *chatty {
- fmt.printf("%+v %v\n", *malloc.GetStats(), uint64(0));
+ fmt.Printf("%+v %v\n", *malloc.GetStats(), uint64(0));
}
}