]> git.puffer.fish Git - mirror/frr.git/commitdiff
lib: fix __attribute__ typo
authorDavid Lamparter <equinox@opensourcerouting.org>
Wed, 17 May 2017 17:19:56 +0000 (19:19 +0200)
committerQuentin Young <qlyoung@users.noreply.github.com>
Thu, 18 May 2017 18:07:28 +0000 (14:07 -0400)
__attribute breaks pycparser

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
lib/prefix.h

index 09cb0cab874360f7b5be11316680e0be4cf568f2..35dfddd9d346701a8f55731e3c65cfd7e353bd6e 100644 (file)
@@ -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;
 };