From c329d6a7085e3123f3d5ca98a8e0ab37edca2dcc Mon Sep 17 00:00:00 2001 From: Patrick McHardy 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/xtables.h') diff --git a/include/xtables.h b/include/xtables.h index f23c303f..5f0caea3 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