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

This commit is contained in:
Guido van Rossum 2000-06-28 21:30:31 +00:00
parent 2650a42f0b
commit 26418a90f0
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ static char *
call_readline(prompt)
char *prompt;
{
int n;
size_t n;
char *p, *q;
RETSIGTYPE (*old_inthandler)();
old_inthandler = signal(SIGINT, onintr);