gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: fix format string issue


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: fix format string issue
Date: Fri, 06 Jan 2017 23:06:00 +0100

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 a7dd616  fix format string issue
a7dd616 is described below

commit a7dd61673b1f4c06acb6844c856405721bb0511e
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri Jan 6 23:05:54 2017 +0100

    fix format string issue
---
 src/psycstore/gnunet-service-psycstore.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/psycstore/gnunet-service-psycstore.c 
b/src/psycstore/gnunet-service-psycstore.c
index 573a58d..10c92a8 100644
--- a/src/psycstore/gnunet-service-psycstore.c
+++ b/src/psycstore/gnunet-service-psycstore.c
@@ -198,8 +198,8 @@ send_fragment (void *cls, struct 
GNUNET_MULTICAST_MessageHeader *msg,
   res->psycstore_flags = htonl (flags);
   GNUNET_memcpy (&res[1], msg, msg_size);
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Sending fragment %ld to client\n",
-             GNUNET_ntohll (msg->fragment_id));
+             "Sending fragment %llu to client\n",
+             (unsigned long long) GNUNET_ntohll (msg->fragment_id));
   GNUNET_free (msg);
 
   GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (sc->client), env);

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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