src/examples: fixed printf format specifiers

This commit is contained in:
Evgeny Grin (Karlson2k)
2022-04-23 15:25:50 +03:00
parent e152c9c49b
commit d1c74589fb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -176,6 +176,6 @@ main (int argc, char *const *argv)
MHD_destroy_response (response);
for (i = 0; i < SMALL; i++)
if (0 != small_deltas[i])
fprintf (stdout, "D: %d %u\n", i, small_deltas[i]);
fprintf (stdout, "D: %u %u\n", i, small_deltas[i]);
return 0;
}
+1 -1
View File
@@ -240,6 +240,6 @@ main (int argc, char *const *argv)
MHD_destroy_response (response);
for (i = 0; i < SMALL; i++)
if (0 != small_deltas[i])
fprintf (stdout, "D: %d %u\n", i, small_deltas[i]);
fprintf (stdout, "D: %u %u\n", i, small_deltas[i]);
return 0;
}