Fix sign mismatch introduced with 8e60fcf530

This commit is contained in:
Juergen Spitzmueller 2020-04-10 09:00:19 +02:00
parent 00a6ad4b66
commit b351910478

View File

@ -43,7 +43,7 @@ typedef struct
size_t max; /* capacity of buf */
S4 wrote; /* number of characters written into buf */
size_t read; /* position in buf of next character to read from buf */
unsigned char * buf; /* line buffer */
char * buf; /* line buffer */
} Line;
char linebuf[MAXLINE+1];