Message ID | 1478798481-25030-2-git-send-email-drjones@redhat.com |
---|---|
State | Superseded |
Headers | show |
diff --git a/lib/libcflat.h b/lib/libcflat.h index 72b1bf9668ef..82005f5d014f 100644 --- a/lib/libcflat.h +++ b/lib/libcflat.h @@ -27,8 +27,8 @@ #define __unused __attribute__((__unused__)) -#define xstr(s) xxstr(s) -#define xxstr(s) #s +#define xstr(s...) xxstr(s) +#define xxstr(s...) #s #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) #define __ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)