diff options
author | Christian Grothoff <christian@grothoff.org> | 2012-02-22 18:59:19 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2012-02-22 18:59:19 +0000 |
commit | 9ff7395ac8884bec3d4cfc6ef2cd3215c1743873 (patch) | |
tree | e7decce0e223da5c64ed6cc45eeaeea391e0e8aa /src | |
parent | 4ab709caddac414aa5c499207279fa71d9d62136 (diff) |
-fix type
Diffstat (limited to 'src')
-rw-r--r-- | src/hello/test_hello.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hello/test_hello.c b/src/hello/test_hello.c index c645252ffe..6906a4113f 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))) |