Kaydet (Commit) 07f075ce authored tarafından Tim Peters's avatar Tim Peters

BZ2Comp_compress(): changed decl of totalout to LONG_LONG, since it's

solely used to hold LONG_LONG values, and the compiler rightfully warns
about potential data loss otherwise.
üst a17c0c45
......@@ -1432,7 +1432,7 @@ BZ2Comp_compress(BZ2CompObject *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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment