summaryrefslogtreecommitdiffstats
path: root/avahi-core/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-core/util.c')
-rw-r--r--avahi-core/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avahi-core/util.c b/avahi-core/util.c
index 77632fd..ef54be1 100644
--- a/avahi-core/util.c
+++ b/avahi-core/util.c
@@ -36,7 +36,7 @@ void avahi_hexdump(const void* p, size_t size) {
const uint8_t *c = p;
assert(p);
- printf("Dumping %u bytes from %p:\n", size, p);
+ printf("Dumping %lu bytes from %p:\n", (unsigned long) size, p);
while (size > 0) {
unsigned i;