diff --git a/compat/getgrent_r.c b/compat/getgrent_r.c index c5ea69d..0bd5295 100644 --- a/compat/getgrent_r.c +++ b/compat/getgrent_r.c @@ -39,7 +39,7 @@ #include #define ALIGNBYTES (sizeof(uintptr_t) - 1) -#define ALIGN(p)(((uintptr_t)(p) + ALIGNBYTES & ~ALIGNBYTES)) +#define ALIGN(p)((((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES)) static unsigned atou(char **s) { unsigned x;