From dcbb3192047c2a721f5f851db591871d428036a9 Mon Sep 17 00:00:00 2001 From: "Markku-Juhani O. Saarinen" Date: Wed, 21 Sep 2016 13:57:30 +0400 Subject: [PATCH] mac compiler warning --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 674ff2e..2f739e9 100644 --- a/main.c +++ b/main.c @@ -179,7 +179,7 @@ void test_speed() x += st[i]; printf("(%016lX) %.3f Keccak-p[1600,24] / Second.\n", - x, (CLOCKS_PER_SEC * ((double) n)) / ((double) us)); + (unsigned long) x, (CLOCKS_PER_SEC * ((double) n)) / ((double) us)); }