From 2b3f167c93bdffd9f0aad852515b7c36d8f2bd47 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Thu, 8 Oct 2009 16:47:33 -0400 Subject: [PATCH] Fixed a warning in debug.c. --- debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug.c b/debug.c index a8deb14..ecd5228 100644 --- a/debug.c +++ b/debug.c @@ -147,7 +147,7 @@ void test () { n = shift_left (four, 5); for (i=0; i<=14; i++) { - printf("\nloop-3 : i=%d len=%d ", i); + printf("\nloop-3 : i=%d len=%d ", i, integer_length(n)); p (shift_left (n, i*4)); } -- 2.11.4.GIT