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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2650a42f0bf1688b6b51bf5b4fb13974589ad937;p=python Trent Mick: use size_t instead of int where appropriate (mpz_format()). --- diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index 1aaf787e6b..af44abf3c6 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;