Sync style with the existing _packed & _unused macros
authorVladislav Grishenko <themiron@mail.ru>
Sun, 31 Jan 2016 16:03:55 +0000 (21:03 +0500)
committerVladislav Grishenko <themiron@mail.ru>
Sun, 31 Jan 2016 16:03:55 +0000 (21:03 +0500)
src/odhcp6c.h
src/ra.c

index 08a816f4446dd893d89db315bf6f8932200ab2b8..5ebea2949b7b591494833e5ae7a76161b0e5caa2 100644 (file)
@@ -18,7 +18,7 @@
 
 #define _unused __attribute__((unused))
 #define _packed __attribute__((packed))
-#define __aligned(n) __attribute__((aligned(n)))
+#define _aligned(n) __attribute__((aligned(n)))
 
 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
 
index f1b102d5abf671a1d6ce67f9a50f86a3b76fbdb5..89dc58b960b557b3e3a6d651b11b1a6a5fa49c7c 100644 (file)
--- a/src/ra.c
+++ b/src/ra.c
@@ -274,7 +274,7 @@ bool ra_process(void)
 {
        bool found = false;
        bool changed = false;
-       uint8_t buf[1500] __aligned(4);
+       uint8_t buf[1500] _aligned(4);
        union {
                struct cmsghdr hdr;
                uint8_t buf[CMSG_SPACE(sizeof(int))];