gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: -fix warnings


From: gnunet
Subject: [gnunet] branch master updated: -fix warnings
Date: Mon, 02 Aug 2021 10:15:39 +0200

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

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 6d911cbe9 -fix warnings
6d911cbe9 is described below

commit 6d911cbe95c747369bb7c8dc724a07c307f553fa
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Mon Aug 2 10:12:18 2021 +0200

    -fix warnings
---
 src/setu/gnunet-service-setu.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/setu/gnunet-service-setu.c b/src/setu/gnunet-service-setu.c
index 2d258bfc5..b01b897d8 100644
--- a/src/setu/gnunet-service-setu.c
+++ b/src/setu/gnunet-service-setu.c
@@ -1746,8 +1746,8 @@ full_sync_plausibility_check (struct Operation *op)
     {
       LOG (GNUNET_ERROR_TYPE_ERROR,
            "PROTOCOL VIOLATION: Received duplicate element in full receiving "
-           "mode of operation this is not allowed! Duplicates: %lu\n",
-           duplicates);
+           "mode of operation this is not allowed! Duplicates: %llu\n",
+           (unsigned long long) duplicates);
       GNUNET_break_op (0);
       fail_union_operation (op);
       return;
@@ -2184,10 +2184,10 @@ send_ibf (struct Operation *op,
                      buckets_in_message, &msg[1], msg->ibf_counter_bit_length);
     buckets_sent += buckets_in_message;
     LOG (GNUNET_ERROR_TYPE_DEBUG,
-         "ibf chunk size %u, %lu/%u sent\n",
-         buckets_in_message,
-         buckets_sent,
-         ibf_size);
+         "ibf chunk size %u, %llu/%u sent\n",
+         (unsigned int) buckets_in_message,
+         (unsigned long long) buckets_sent,
+         (unsigned int) ibf_size);
     GNUNET_MQ_send (op->mq, ev);
   }
 

-- 
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]