summaryrefslogtreecommitdiff
path: root/src/lib/bignum_test.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-01-15 13:48:11 -0800
committerRob Pike <r@golang.org>2009-01-15 13:48:11 -0800
commit8024c6e3aec249fcc40b62e8879d30207e879be9 (patch)
treea72b91ed6b55c7c4635039376af421a98695ad60 /src/lib/bignum_test.go
parentd6b313278a61f109ab8b71dd8c77a40ff557b819 (diff)
downloadgolang-8024c6e3aec249fcc40b62e8879d30207e879be9.tar.gz
printf->Printf etc.
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
Diffstat (limited to 'src/lib/bignum_test.go')
-rw-r--r--src/lib/bignum_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bignum_test.go b/src/lib/bignum_test.go
index 0ededd6f6..417af5b24 100644
--- a/src/lib/bignum_test.go
+++ b/src/lib/bignum_test.go
@@ -117,7 +117,7 @@ export func TestNatConv(t *testing.T) {
test_msg = "NatConvD";
x := bignum.Nat(100);
- y, b := bignum.NatFromString(fmt.sprintf("%b", &x), 2, nil);
+ y, b := bignum.NatFromString(fmt.Sprintf("%b", &x), 2, nil);
NAT_EQ(100, y, x);
}