summaryrefslogtreecommitdiffstats
path: root/userspace/ebtables2/ebtables.c
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
commit43b9e23d7ab1dbbbed6659d5624f01fec0b8a294 (patch)
tree517755d384919224c29ee22deaaed5676aa05b9d /userspace/ebtables2/ebtables.c
parent57cec2a0b5806b26cfa5200a3a19cabe4b9bb426 (diff)
use PRIu64 instead of llu with 64-bit unsigned integers
Diffstat (limited to 'userspace/ebtables2/ebtables.c')
-rw-r--r--userspace/ebtables2/ebtables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/ebtables2/ebtables.c b/userspace/ebtables2/ebtables.c
index 6de714f..d71a981 100644
--- a/userspace/ebtables2/ebtables.c
+++ b/userspace/ebtables2/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);
}