aboutsummaryrefslogtreecommitdiff
path: root/src/dv
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-23 19:04:59 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-23 19:04:59 +0000
commit7cc4fa45f062262d8d35940c04891c54be2e92bb (patch)
tree470240dab7c401068f0a4ee216e610b231de751c /src/dv
parent06c1735c38575ebfa1d0a769f45a722fd4eb7cf0 (diff)
downloadgnunet-7cc4fa45f062262d8d35940c04891c54be2e92bb.tar.gz
gnunet-7cc4fa45f062262d8d35940c04891c54be2e92bb.zip
-fix format string type issue
Diffstat (limited to 'src/dv')
-rw-r--r--src/dv/gnunet-service-dv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dv/gnunet-service-dv.c b/src/dv/gnunet-service-dv.c
index df95fd67b..fd51a8562 100644
--- a/src/dv/gnunet-service-dv.c
+++ b/src/dv/gnunet-service-dv.c
@@ -617,7 +617,7 @@ core_transmit_notify (void *cls, size_t size, void *buf)
617 { 617 {
618 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 618 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
619 "Acking transmission of %u bytes to %s with plugin\n", 619 "Acking transmission of %u bytes to %s with plugin\n",
620 msize, 620 (unsigned int) msize,
621 GNUNET_i2s (&pending->next_target)); 621 GNUNET_i2s (&pending->next_target));
622 send_ack_to_plugin (&pending->next_target, 622 send_ack_to_plugin (&pending->next_target,
623 pending->uid, 623 pending->uid,
@@ -628,7 +628,7 @@ core_transmit_notify (void *cls, size_t size, void *buf)
628 } 628 }
629 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 629 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
630 "Transmitting total of %u bytes to %s\n", 630 "Transmitting total of %u bytes to %s\n",
631 off, 631 (unsigned int) off,
632 GNUNET_i2s (&dn->peer)); 632 GNUNET_i2s (&dn->peer));
633 GNUNET_assert (NULL != core_api); 633 GNUNET_assert (NULL != core_api);
634 if (NULL != pending) 634 if (NULL != pending)
@@ -1761,7 +1761,7 @@ handle_dv_route_message (void *cls,
1761 prev[4] = me[4] = src[4] = dst[4] = '\0'; 1761 prev[4] = me[4] = src[4] = dst[4] = '\0';
1762 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1762 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1763 "Handling DV message with %u bytes payload of type %u from %s to %s routed by %s to me (%s @ hop %u)\n", 1763 "Handling DV message with %u bytes payload of type %u from %s to %s routed by %s to me (%s @ hop %u)\n",
1764 ntohs (message->size) - sizeof (struct RouteMessage), 1764 (unsigned int) (ntohs (message->size) - sizeof (struct RouteMessage)),
1765 ntohs (payload->type), 1765 ntohs (payload->type),
1766 src, dst, 1766 src, dst,
1767 prev, me, 1767 prev, me,