mirror of
https://github.com/python/cpython.git
synced 2025-07-22 10:45:22 +00:00
Trent Mick: use size_t instead of int where appropriate (mpz_format()).
This commit is contained in:
parent
b6f657c0cc
commit
2650a42f0b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue