From: Guido van Rossum Date: Wed, 28 Jun 2000 21:29:47 +0000 (+0000) Subject: Trent Mick: use size_t instead of int where appropriate (mpz_format()). X-Git-Tag: v2.0b1~1348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2650a42f0bf1688b6b51bf5b4fb13974589ad937;p=thirdparty%2FPython%2Fcpython.git Trent Mick: use size_t instead of int where appropriate (mpz_format()). --- diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index 1aaf787e6b53..af44abf3c696 100644 --- a/Modules/mpzmodule.c +++ b/Modules/mpzmodule.c @@ -143,7 +143,7 @@ mpz_format(objp, base, withname) { mpzobject *mpzp = (mpzobject *)objp; PyStringObject *strobjp; - int i; + size_t i; int cmpres; int taglong; char *cp;