From f63d0cb8ddce6070abd9d96c5311157042deed3c Mon Sep 17 00:00:00 2001 From: "/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net" Date: Wed, 5 Sep 2007 14:19:23 +0000 Subject: Fix aligned_u64 type on 64 bit: its an unsigned long, not an unsigned long long. Fixes compiler warning in quota match. --- include/xtables.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/xtables.h b/include/xtables.h index f23c303..5f0caea 100644 --- a/include/xtables.h +++ b/include/xtables.h @@ -218,7 +218,7 @@ enum exittype { }; /* this is a special 64bit data type that is 8-byte aligned */ -#define aligned_u64 unsigned long long __attribute__((aligned(8))) +#define aligned_u64 u_int64_t __attribute__((aligned(8))) extern void exit_printhelp() __attribute__((noreturn)); extern void exit_tryhelp(int) __attribute__((noreturn)); -- cgit v1.2.3