commit b171a5de91577562d65e169a70e2be3cae5fe5b3
Author: Oswald Buddenhagen <o...@users.sf.net>
Date:   Sun Jul 28 22:31:41 2019 +0200

    don't use reserved identifier pattern in stringify()

 src/common.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common.h b/src/common.h
index d45929c..d52240e 100644
--- a/src/common.h
+++ b/src/common.h
@@ -37,8 +37,8 @@ typedef unsigned long ulong;
 
 #define as(ar) (sizeof(ar)/sizeof(ar[0]))
 
-#define __stringify(x) #x
-#define stringify(x) __stringify(x)
+#define stringify__(x) #x
+#define stringify(x) stringify__(x)
 
 #define shifted_bit(in, from, to) \
        (((uint)(in) / (from > to ? from / to : 1) * (to > from ? to / from : 
1)) & to)


_______________________________________________
isync-devel mailing list
isync-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/isync-devel

Reply via email to