]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
CID 984511: Some systems have different printf needs for sizeof
authorHarlan Stenn <stenn@ntp.org>
Sat, 3 Aug 2013 09:35:28 +0000 (05:35 -0400)
committerHarlan Stenn <stenn@ntp.org>
Sat, 3 Aug 2013 09:35:28 +0000 (05:35 -0400)
bk: 51fccee0XCBeuk3HRRus4jAwvJE5PA

ChangeLog
sntp/main.c

index 2a088bc531e166646aa89cc81ef44367f1500a93..4e87a18f1ed22d1a5f1fc435ffdd96c4db990219 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+* CID 984511: Some systems have different printf needs for sizeof.
 (4.2.7p379) 2013/08/02 Released by Harlan Stenn <stenn@ntp.org>
 * CID 739724: Fix printf arg mismatch in a debug line.
 * [Bug 2425] compile io_handler() in ntp_io.c unconditionally
index f8f14888c5e5322a6505d164780851cec1bf0628..ee59714b41572b18afc0f03749a9db0f39497298 100644 (file)
@@ -708,7 +708,7 @@ timeout_queries(void)
        int didsomething = 0;
 
        TRACE(3, ("timeout_queries: called to check %u items\n",
-                 COUNTOF(fam_listheads)));
+                 (unsigned)COUNTOF(fam_listheads)));
 
        gettimeofday_cached(base, &start_cb);
        for (idx = 0; idx < COUNTOF(fam_listheads); idx++) {