Compiler flag -Wundef + fix incorrect macro

This commit is contained in:
Max Bruckner
2017-02-03 12:13:17 +01:00
parent 981f59b163
commit fe18403935
3 changed files with 3 additions and 3 deletions

View File

@ -245,7 +245,7 @@ static int pow2gt (int x)
#if INTEGER_SIZE & 0x1100 /* at least 32 bit */
x |= x >> 16;
#endif
#if INT_SIZE & 0x1000 /* 64 bit */
#if INTEGER_SIZE & 0x1000 /* 64 bit */
x |= x >> 32;
#endif