summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2010-03-16 13:19:36 +0000
committerBart De Schuymer <bdschuym@pandora.be>2010-03-16 13:19:36 +0000
commit16cb38ae3df4eea6f842ea8a2a108a984487e4e7 (patch)
tree838a1a445608379195c3357cebb809e4f9d7b653
parent078161d5b9d2d0818ff75e9ea8bd04f99727ed5f (diff)
use PRIu64 instead of llu with 64-bit unsigned integers
-rw-r--r--ebtables.c2
1 files changed, 1 insertions, 1 deletions
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);
}