From 0de32435158ffa575eaae6d821bf326970af36c0 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Mon, 25 Feb 2002 09:00:36 +0000 Subject: fix IP6T_MIN_ALIGN macro (Andreas Herrmann) --- include/libiptc/libip6tc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libiptc/libip6tc.h b/include/libiptc/libip6tc.h index aebd6477..2904db57 100644 --- a/include/libiptc/libip6tc.h +++ b/include/libiptc/libip6tc.h @@ -6,7 +6,7 @@ #include #ifndef IP6T_MIN_ALIGN -#define IP6T_MIN_ALIGN (__alignof__(struct ip6t_entry_match)) +#define IP6T_MIN_ALIGN (__alignof__(struct ip6t_entry)) #endif #define IP6T_ALIGN(s) (((s) + (IP6T_MIN_ALIGN-1)) & ~(IP6T_MIN_ALIGN-1)) -- cgit v1.2.3