commit | 26fd9607c729f4dbe322967464834a2bce18c07d | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Apr 22 11:15:41 2006 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Apr 22 11:15:41 2006 +0000 |
tree | dbe8e2a9ce2960e77a99a8df198795b82ad38555 | |
parent | 8694a6db0e590887c5e43eb949481935f89de424 [diff] [blame] |
Fix more ssize_t problems.
diff --git a/Modules/cjkcodecs/multibytecodec.c b/Modules/cjkcodecs/multibytecodec.c index aa0096a..7e6aedc 100644 --- a/Modules/cjkcodecs/multibytecodec.c +++ b/Modules/cjkcodecs/multibytecodec.c
@@ -831,7 +831,7 @@ { while (buf->inbuf < buf->inbuf_end) { Py_ssize_t inleft, outleft; - int r; + Py_ssize_t r; inleft = (Py_ssize_t)(buf->inbuf_end - buf->inbuf); outleft = (Py_ssize_t)(buf->outbuf_end - buf->outbuf);