gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 12/26: src/examples: fixed printf format specifiers


From: gnunet
Subject: [libmicrohttpd] 12/26: src/examples: fixed printf format specifiers
Date: Mon, 25 Apr 2022 15:08:36 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit d1c74589fba965e9e1f5fc1479a3a3d5a4cfe00a
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sat Apr 23 15:25:50 2022 +0300

    src/examples: fixed printf format specifiers
---
 src/examples/benchmark.c       | 2 +-
 src/examples/benchmark_https.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/examples/benchmark.c b/src/examples/benchmark.c
index 1abdad24..37e1b4f8 100644
--- a/src/examples/benchmark.c
+++ b/src/examples/benchmark.c
@@ -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;
 }
diff --git a/src/examples/benchmark_https.c b/src/examples/benchmark_https.c
index ae7e074f..9553d434 100644
--- a/src/examples/benchmark_https.c
+++ b/src/examples/benchmark_https.c
@@ -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;
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]