From 92bcadb11089b7efc9067767b39993cbea9a6537 Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Mon, 30 Dec 2013 15:37:17 +0100 Subject: [PATCH] Removed 'z' length modifier from low-value size_t in ecp_selftest() --- library/ecp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/ecp.c b/library/ecp.c index 8c5c06e69..d1b25498d 100644 --- a/library/ecp.c +++ b/library/ecp.c @@ -1869,7 +1869,7 @@ int ecp_self_test( int verbose ) mul_count != mul_c_prev ) { if( verbose != 0 ) - printf( "failed (%zu)\n", i ); + printf( "failed (%u)\n", i ); ret = 1; goto cleanup; @@ -1906,7 +1906,7 @@ int ecp_self_test( int verbose ) mul_count != mul_c_prev ) { if( verbose != 0 ) - printf( "failed (%zu)\n", i ); + printf( "failed (%u)\n", i ); ret = 1; goto cleanup;