Message ID | 20161123165406.32661-2-drjones@redhat.com |
---|---|
State | New |
Headers | show |
diff --git a/lib/libcflat.h b/lib/libcflat.h index c622198677c1..c3fa4f24c499 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)