From 16cb38ae3df4eea6f842ea8a2a108a984487e4e7 Mon Sep 17 00:00:00 2001 From: Bart De Schuymer Date: Tue, 16 Mar 2010 13:19:36 +0000 Subject: use PRIu64 instead of llu with 64-bit unsigned integers --- ebtables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebtables.c b/ebtables.c index 6de714f..d71a981 100644 --- a/ebtables.c +++ b/ebtables.c @@ -322,7 +322,7 @@ static void list_em(struct ebt_u_entries *entries) uint64_t bcnt = hlp->cnt.bcnt; if (replace->flags & LIST_X) - printf("-c %llu %llu", pcnt, bcnt); + printf("-c %"PRIu64" %"PRIu64, pcnt, bcnt); else printf(", pcnt = %"PRIu64" -- bcnt = %"PRIu64, pcnt, bcnt); } -- cgit v1.2.3