--- libecb/ecb.h 2011/05/26 21:35:39 1.26 +++ libecb/ecb.h 2011/05/26 23:23:08 1.28 @@ -103,7 +103,7 @@ /* count trailing zero bits and count # of one bits */ #if ECB_GCC_VERSION(3,4) -#define ecb_ctz32(x) __builtin_ctz (x) +#define ecb_ctz32(x) __builtin_ctz (x) #define ecb_popcount32(x) __builtin_popcount (x) #else ECB_HEADER_INLINE int ecb_ctz32 (uint32_t x) ecb_const; @@ -181,7 +181,7 @@ ECB_HEADER_INLINE ecb_bool ecb_little_endian (void) ecb_const; ECB_HEADER_INLINE ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44; }; -#define ecb_mod(m, n) ((m) < 0 ? ((n) - (-(m) % (n))) : ((m) % (n))) +#define ecb_mod(m,n) ((m) < 0 ? ((n) - (-(m) % (n))) : ((m) % (n))) #if ecb_cplusplus_does_not_suck // does not work for local types (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm)