mirror of https://github.com/python/cpython.git
This couldn't compile on WIndows, due to hardcoded "long long". Repaired.
This commit is contained in:
parent
7cd83ca9ad
commit
e32280987c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue