From 6154ae8e24f8e4ddc414cc8c11a5ac091935cb73 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 18 Jun 2013 14:16:40 -0700 Subject: [PATCH] math/big: fix Errorf verb Pointed out by go vet. R=r CC=golang-dev https://golang.org/cl/10368048 --- src/pkg/math/big/nat_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/math/big/nat_test.go b/src/pkg/math/big/nat_test.go index 2dd7bf6396..1d4dfe80d3 100644 --- a/src/pkg/math/big/nat_test.go +++ b/src/pkg/math/big/nat_test.go @@ -685,7 +685,7 @@ func runModWTests(t *testing.T, tests []modWTest) { r := in.abs.modW(d.abs[0]) if r != out.abs[0] { - t.Errorf("#%d failed: got %s want %s", i, r, out) + t.Errorf("#%d failed: got %d want %s", i, r, out) } } } -- 2.48.1