Avoid PS3 compiler warning

This commit is contained in:
twinaphex 2014-10-05 16:46:50 +02:00
parent 7bad7e295d
commit c94d66a8be

View File

@ -123,7 +123,7 @@ typedef struct
#define BIT64_SET(a, bit) ((a) |= (1ULL << ((bit) & 63)))
#define BIT64_CLEAR(a, bit) ((a) &= ~(1ULL << ((bit) & 63)))
#define BIT64_GET(a, bit) ((a) & (1ULL << ((bit) & 63)))
#define BIT64_GET(a, bit) (!!((a) & (1ULL << ((bit) & 63))))
#define BIT64_CLEAR_ALL(a) ((a) = 0)
#define BIT_SET(a, bit) ((a)[(bit) >> 3] |= (1 << ((bit) & 7)))