From: Bodo Möller Date: Tue, 5 Mar 2002 15:05:00 +0000 (+0000) Subject: fix printf call X-Git-Tag: OpenSSL_0_9_6d~20^2~99 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=87a4b4d1f41a3e653b3a020df1975c7dbbe5478f;p=oweals%2Fopenssl.git fix printf call --- diff --git a/apps/speed.c b/apps/speed.c index 1c2b4eeda2..b451a49af3 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -1625,7 +1625,7 @@ show_res: #endif #ifdef HZ #define as_string(s) (#s) - printf("HZ=%g", HZ); + printf("HZ=%g", (double)HZ); # ifdef _SC_CLK_TCK printf(" [sysconf value]"); # endif