From: David Lamparter Date: Wed, 17 May 2017 17:19:56 +0000 (+0200) Subject: lib: fix __attribute__ typo X-Git-Tag: reindent-master-before~135 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=5662e2c91cd46ae1642eb939d3e20abe49c48466;p=matthieu%2Ffrr.git lib: fix __attribute__ typo __attribute breaks pycparser Signed-off-by: David Lamparter --- diff --git a/lib/prefix.h b/lib/prefix.h index 09cb0cab87..35dfddd9d3 100644 --- a/lib/prefix.h +++ b/lib/prefix.h @@ -179,7 +179,7 @@ struct prefix_sg { u_char family; u_char prefixlen; - struct in_addr src __attribute ((aligned (8))); + struct in_addr src __attribute__ ((aligned (8))); struct in_addr grp; };