summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2007-09-05 14:19:23 +0000
committer/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2007-09-05 14:19:23 +0000
commitf63d0cb8ddce6070abd9d96c5311157042deed3c (patch)
treebecf16a74f3553401656daea895af8044a3c90a3 /include
parent9d575d763958c30a044cc3d8d839b3c39bb67bd2 (diff)
Fix aligned_u64 type on 64 bit: its an unsigned long, not an unsigned long long.
Fixes compiler warning in quota match.
Diffstat (limited to 'include')
-rw-r--r--include/xtables.h2
1 files changed, 1 insertions, 1 deletions
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));