aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-06 23:05:54 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-06 23:05:54 +0100
commita7dd61673b1f4c06acb6844c856405721bb0511e (patch)
tree80b86ebb3c1a8086f9c40f39f1a8136f211bcaef /src
parentc859283e8ccc3a2aa89655698ef5f66793531e16 (diff)
downloadgnunet-a7dd61673b1f4c06acb6844c856405721bb0511e.tar.gz
gnunet-a7dd61673b1f4c06acb6844c856405721bb0511e.zip
fix format string issue
Diffstat (limited to 'src')
-rw-r--r--src/psycstore/gnunet-service-psycstore.c4
1 files changed, 2 insertions, 2 deletions
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,
198 res->psycstore_flags = htonl (flags); 198 res->psycstore_flags = htonl (flags);
199 GNUNET_memcpy (&res[1], msg, msg_size); 199 GNUNET_memcpy (&res[1], msg, msg_size);
200 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 200 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
201 "Sending fragment %ld to client\n", 201 "Sending fragment %llu to client\n",
202 GNUNET_ntohll (msg->fragment_id)); 202 (unsigned long long) GNUNET_ntohll (msg->fragment_id));
203 GNUNET_free (msg); 203 GNUNET_free (msg);
204 204
205 GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (sc->client), env); 205 GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (sc->client), env);