summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorFabian Hugelshofer <hugelshofer2006@gmx.ch>2008-06-23 16:16:58 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2008-06-23 16:16:58 +0200
commitd6bf05a9974ea3bd46c69fe437291b561ce994b4 (patch)
treed8b5dcbc1a1c68173e882f049786f79961e6a40e /utils
parentbe78dbbc22e4c033ab9231ac01b4758e4b6d41ff (diff)
fix alignment issues
Diffstat (limited to 'utils')
-rw-r--r--utils/nfqnl_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/nfqnl_test.c b/utils/nfqnl_test.c
index be72974..7e4edab 100644
--- a/utils/nfqnl_test.c
+++ b/utils/nfqnl_test.c
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
struct nfnl_handle *nh;
int fd;
int rv;
- char buf[4096];
+ char buf[4096] __attribute__ ((aligned));
printf("opening library handle\n");
h = nfq_open();