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
1 changed files with 23 additions and 23 deletions

View File

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