From 6fe25398d613689411548ea48c09fa8615009abb Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 23 Jan 2002 07:36:23 +0000 Subject: [PATCH] Fix another int that ought to be a size_t. --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index 6085745d..45d91eed 100644 --- a/io.c +++ b/io.c @@ -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]; -- 2.34.1