This couldn't compile on WIndows, due to hardcoded "long long". Repaired.

This commit is contained in:
Tim Peters 2002-11-09 04:21:44 +00:00
parent 7cd83ca9ad
commit e32280987c

View file

@ -36,7 +36,7 @@ static char __author__[] =
(((long)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
#elif SIZEOF_LONG_LONG >= 8
#define BZS_TOTAL_OUT(bzs) \
(((long long)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
(((LONG_LONG)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
#else
#define BZS_TOTAL_OUT(bzs) \
bzs->total_out_lo32;