Index: trunk/i386/libsaio/cpu.h =================================================================== --- trunk/i386/libsaio/cpu.h (revision 1159) +++ trunk/i386/libsaio/cpu.h (revision 1160) @@ -10,7 +10,7 @@ extern void scan_cpu(PlatformInfo_t *); -#define bit(n) (1UL << (n)) +#define bit(n) (1ULL << (n)) #define bitmask(h,l) ((bit(h)|(bit(h)-1)) & ~(bit(l)-1)) #define bitfield(x,h,l) (((x) & bitmask(h,l)) >> l)