Commit beb59385 authored by Guido van Rossum's avatar Guido van Rossum

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

parent 51fcd86c
...@@ -143,7 +143,7 @@ mpz_format(objp, base, withname) ...@@ -143,7 +143,7 @@ mpz_format(objp, base, withname)
{ {
mpzobject *mpzp = (mpzobject *)objp; mpzobject *mpzp = (mpzobject *)objp;
PyStringObject *strobjp; PyStringObject *strobjp;
int i; size_t i;
int cmpres; int cmpres;
int taglong; int taglong;
char *cp; char *cp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment