summaryrefslogtreecommitdiff
path: root/test/bench
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-09-24 11:55:48 -0400
committerRuss Cox <rsc@golang.org>2010-09-24 11:55:48 -0400
commitd5165e014a48caf4e70ee689a9aa91f518c6b0e6 (patch)
tree891771a88ca051db8f5401574bb5d2f70ef8a4ff /test/bench
parentae57636feb9528a094e23a8b4bde17b418a94b00 (diff)
downloadgo-d5165e014a48caf4e70ee689a9aa91f518c6b0e6.tar.gz
... changes
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/2273042
Diffstat (limited to 'test/bench')
-rw-r--r--test/bench/pidigits.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bench/pidigits.go b/test/bench/pidigits.go
index dcfb502ce..55da37943 100644
--- a/test/bench/pidigits.go
+++ b/test/bench/pidigits.go
@@ -100,7 +100,7 @@ func eliminate_digit(d int64) {
func printf(s string, arg ...interface{}) {
if !*silent {
- fmt.Printf(s, arg)
+ fmt.Printf(s, arg...)
}
}