mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
src/examples: fixed printf format specifiers
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user