From 2650a42f0bf1688b6b51bf5b4fb13974589ad937 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 28 Jun 2000 21:29:47 +0000 Subject: [PATCH] Trent Mick: use size_t instead of int where appropriate (mpz_format()). --- Modules/mpzmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index 1aaf787e6b5..af44abf3c69 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;