commit | d2fc5d68da4c6410d71366e04b61d9e8fcb679b3 | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Tue Feb 02 10:53:37 2010 +1100 |
committer | Rob Pike <r@golang.org> | Tue Feb 02 10:53:37 2010 +1100 |
tree | 5102f519f258e382a0657d658615ec38b4563611 | |
parent | 1f11ece67f8b4d329dcf98ca0b214e4da515e446 [diff] [blame] |
Change type of Printf's args to ... interface{} R=rsc CC=golang-dev https://golang.org/cl/197043
diff --git a/test/bench/pidigits.go b/test/bench/pidigits.go index 430c118..aaa9f53 100644 --- a/test/bench/pidigits.go +++ b/test/bench/pidigits.go
@@ -92,7 +92,7 @@ bignum.Iscale(numer, 10) } -func printf(s string, arg ...) { +func printf(s string, arg ...interface{}) { if !*silent { fmt.Printf(s, arg) }