From c5fe705ee4938cde15e0896f2d0c89e11e84fc42 Mon Sep 17 00:00:00 2001 From: Bart De Schuymer Date: Fri, 22 Dec 2006 18:33:18 +0000 Subject: make printing of uint64_t architecture independent --- userspace/ebtables2/ebtables.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'userspace') diff --git a/userspace/ebtables2/ebtables.c b/userspace/ebtables2/ebtables.c index 20a3bad..1b819cd 100644 --- a/userspace/ebtables2/ebtables.c +++ b/userspace/ebtables2/ebtables.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "include/ebtables_u.h" #include "include/ethernetdb.h" @@ -323,7 +324,7 @@ static void list_em(struct ebt_u_entries *entries) if (replace->flags & LIST_X) printf("-c %llu %llu", pcnt, bcnt); else - printf(", pcnt = %llu -- bcnt = %llu", pcnt, bcnt); + printf(", pcnt = %"PRIu64" -- bcnt = %"PRIu64, pcnt, bcnt); } printf("\n"); hlp = hlp->next; -- cgit v1.2.3