From: Christian Grothoff Date: Wed, 22 Feb 2012 18:59:19 +0000 (+0000) Subject: -fix type X-Git-Tag: initial-import-from-subversion-38251~14715 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9ff7395ac8884bec3d4cfc6ef2cd3215c1743873;p=oweals%2Fgnunet.git -fix type --- diff --git a/src/hello/test_hello.c b/src/hello/test_hello.c index c645252ff..6906a4113 100644 --- a/src/hello/test_hello.c +++ b/src/hello/test_hello.c @@ -62,7 +62,7 @@ check_addr (void *cls, const struct GNUNET_HELLO_Address *address, #if DEBUG FPRINTF (stderr, "DEBUG: check_addr called with i = %d and addrlen = %u\n", - *i, address->address_length); + *i, (unsigned int) address->address_length); #endif GNUNET_assert (address->address_length > 0); GNUNET_assert (*i & (1 << (address->address_length - 1))); @@ -83,7 +83,7 @@ remove_some (void *cls, const struct GNUNET_HELLO_Address *address, #if DEBUG FPRINTF (stderr, "DEBUG: remove_some called with i = %d and addrlen = %u\n", - *i, address->address_length); + *i, (unsigned int) address->address_length); #endif GNUNET_assert (address->address_length > 0); if (*i & (1 << (address->address_length - 1)))