Trent Mick: use size_t instead of int where appropriate (mpz_format()).

This commit is contained in:
Guido van Rossum 2000-06-28 21:29:47 +00:00
parent b6f657c0cc
commit 2650a42f0b
1 changed files with 1 additions and 1 deletions

View File

@ -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;