Make gcc -Wall happy

This commit is contained in:
Guido van Rossum 1996-12-05 21:58:58 +00:00
parent 472c04f18f
commit da9c2710c7
5 changed files with 6 additions and 20 deletions

View file

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