aboutsummaryrefslogtreecommitdiff
path: root/src/dns
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
commite8cf81fdb3fdaef59b49da8f6e952a3225ab326e (patch)
tree4e5f75d44a9121b32895fdfc5a4177052a7d923d /src/dns
parentae8cb91d9961899075a892a3110204bc139c2eb6 (diff)
downloadgnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.tar.gz
gnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.zip
fixing compiler warnings
Diffstat (limited to 'src/dns')
-rw-r--r--src/dns/dnsstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns/dnsstub.c b/src/dns/dnsstub.c
index c1e7b5f61..50a3320fb 100644
--- a/src/dns/dnsstub.c
+++ b/src/dns/dnsstub.c
@@ -436,7 +436,7 @@ do_dns_read (struct GNUNET_DNSSTUB_RequestSocket *rs,
436 { 436 {
437 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 437 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
438 _("Received DNS response that is too small (%u bytes)"), 438 _("Received DNS response that is too small (%u bytes)"),
439 r); 439 (unsigned int) r);
440 return GNUNET_NO; 440 return GNUNET_NO;
441 } 441 }
442 dns = (struct GNUNET_TUN_DnsHeader *) buf; 442 dns = (struct GNUNET_TUN_DnsHeader *) buf;