From: Martin Pool Date: Wed, 23 Jan 2002 07:36:23 +0000 (+0000) Subject: Fix another int that ought to be a size_t. X-Git-Tag: v2.5.2pre1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fe25398d613689411548ea48c09fa8615009abb;p=thirdparty%2Frsync.git Fix another int that ought to be a size_t. --- 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];