From: Christian Grothoff Date: Fri, 6 Jan 2017 22:05:54 +0000 (+0100) Subject: fix format string issue X-Git-Tag: taler-0.2.1~521 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a7dd61673b1f4c06acb6844c856405721bb0511e;p=oweals%2Fgnunet.git fix format string issue --- diff --git a/src/psycstore/gnunet-service-psycstore.c b/src/psycstore/gnunet-service-psycstore.c index 573a58d5c..10c92a878 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);