From 4b7042b8185c2b5f87f4832bd49ad7b1f29d592d Mon Sep 17 00:00:00 2001 From: laforge 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 aebd647..2904db5 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