isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit b885e0e03abf8f126154dbce89a06068e6f7ed3a
parent 85688d1c1a6053041e49b959350ed585f8209b4a
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun, 28 Jul 2019 22:31:41 +0200

don't use reserved identifier pattern in stringify()

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

diff --git 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)