diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-03-29 10:06:18 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-03-29 10:06:18 (GMT) |
commit | b9a0f9121876cbc728cbef88f16bb32b92712d2d (patch) | |
tree | 2677795fd372f25549f84764a556bee87ec66f43 /Modules/bz2module.c | |
parent | 043bbc7da387f613f3ce60c20063e2a29baff372 (diff) | |
download | cpython-b9a0f9121876cbc728cbef88f16bb32b92712d2d.zip cpython-b9a0f9121876cbc728cbef88f16bb32b92712d2d.tar.gz cpython-b9a0f9121876cbc728cbef88f16bb32b92712d2d.tar.bz2 |
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
Diffstat (limited to 'Modules/bz2module.c')
-rw-r--r-- | Modules/bz2module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index 114070fa..5ab3f99 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c @@ -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) + (((PY_LONG_LONG)bzs->total_out_hi32 << 32) + bzs->total_out_lo32) #else #define BZS_TOTAL_OUT(bzs) \ bzs->total_out_lo32; @@ -1490,7 +1490,7 @@ BZ2Comp_compress(BZ2CompObject *self, PyObject *args) char *data; int datasize; int bufsize = SMALLCHUNK; - LONG_LONG totalout; + PY_LONG_LONG totalout; PyObject *ret = NULL; bz_stream *bzs = &self->bzs; int bzerror; @@ -1562,7 +1562,7 @@ BZ2Comp_flush(BZ2CompObject *self) int bufsize = SMALLCHUNK; PyObject *ret = NULL; bz_stream *bzs = &self->bzs; - LONG_LONG totalout; + PY_LONG_LONG totalout; int bzerror; ACQUIRE_LOCK(self); @@ -1768,7 +1768,7 @@ BZ2Decomp_decompress(BZ2DecompObject *self, PyObject *args) char *data; int datasize; int bufsize = SMALLCHUNK; - LONG_LONG totalout; + PY_LONG_LONG totalout; PyObject *ret = NULL; bz_stream *bzs = &self->bzs; int bzerror; |