diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-11-09 04:31:38 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-11-09 04:31:38 (GMT) |
commit | 39185d622dc9eb8abe13d34925631c65593a8246 (patch) | |
tree | 803ba2d86e497a34434f26a3abae96b09f5f4d84 /Modules/bz2module.c | |
parent | 2858e5e84b4b4463d4fd327088bf8b4f87bf743b (diff) | |
download | cpython-39185d622dc9eb8abe13d34925631c65593a8246.zip cpython-39185d622dc9eb8abe13d34925631c65593a8246.tar.gz cpython-39185d622dc9eb8abe13d34925631c65593a8246.tar.bz2 |
BZ2Decomp_decompress(): Fixed more long vs LONG_LONG confusions.
Diffstat (limited to 'Modules/bz2module.c')
-rw-r--r-- | Modules/bz2module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index d65e6dd..b4a22fb 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c @@ -1709,7 +1709,7 @@ BZ2Decomp_decompress(BZ2DecompObject *self, PyObject *args) char *data; int datasize; int bufsize = SMALLCHUNK; - long totalout; + LONG_LONG totalout; PyObject *ret = NULL; bz_stream *bzs = &self->bzs; int bzerror; @@ -1769,7 +1769,7 @@ BZ2Decomp_decompress(BZ2DecompObject *self, PyObject *args) } if (bzs->avail_out != 0) - _PyString_Resize(&ret, BZS_TOTAL_OUT(bzs) - totalout); + _PyString_Resize(&ret, (int)(BZS_TOTAL_OUT(bzs) - totalout)); RELEASE_LOCK(self); return ret; |