diff --git a/src/lzf.c b/src/lzf.c index 33a1b2dcd..d5b502b58 100644 --- a/src/lzf.c +++ b/src/lzf.c @@ -59,7 +59,9 @@ * Unconditionally aligning does not cost very much, so do it if unsure */ #ifndef STRICT_ALIGN -# define STRICT_ALIGN !(defined(__i386) || defined (__amd64)) || defined (__clang__) +#if !(defined(__i386) || defined (__amd64)) || defined (__clang__) +#define STRICT_ALIGN 1 +#endif #endif /*