Fix another int that ought to be a size_t.

This commit is contained in:
Martin Pool
2002-01-23 07:36:23 +00:00
parent 909ce14fc4
commit 6fe25398d6

2
io.c
View File

@@ -255,7 +255,7 @@ static void read_loop (int fd, char *buf, size_t len)
*/
static int read_unbuffered(int fd, char *buf, size_t len)
{
static int remaining;
static size_t remaining;
int tag, ret = 0;
char line[1024];