qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [kvm-unit-tests PATCH v7 01/11] lib: xstr: allow multiple a


From: Andrew Jones
Subject: [Qemu-devel] [kvm-unit-tests PATCH v7 01/11] lib: xstr: allow multiple args
Date: Wed, 23 Nov 2016 17:53:56 +0100

Make implementation equivalent to Linux's include/linux/stringify.h

Reviewed-by: Eric Auger <address@hidden>
Signed-off-by: Andrew Jones <address@hidden>
---
 lib/libcflat.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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)
-- 
2.9.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]