qemu-arm
[Top][All Lists]
Advanced

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

[Qemu-arm] [kvm-unit-tests PATCH 01/10] lib: xstr: allow multiple args


From: Andrew Jones
Subject: [Qemu-arm] [kvm-unit-tests PATCH 01/10] lib: xstr: allow multiple args
Date: Mon, 16 May 2016 09:57:15 +0200

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 df50615b43666..ba29041b731e2 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.4.11




reply via email to

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