mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Make gcc -Wall happy
This commit is contained in:
parent
472c04f18f
commit
da9c2710c7
5 changed files with 6 additions and 20 deletions
|
@ -98,7 +98,7 @@ range_print(r, fp, flags)
|
|||
if (j > 0 || i > 0)
|
||||
fprintf(fp, ", ");
|
||||
|
||||
fprintf(fp, "%d", r->start + j * r->step);
|
||||
fprintf(fp, "%ld", r->start + j * r->step);
|
||||
}
|
||||
|
||||
if (r->len == 1 && r->reps == 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue