From cf46dfb750863d760d19b9858b0a336b158275da Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 2 Sep 2002 05:50:28 +0000 Subject: Import cvs-1.11.2 onto vendor branch Obtained from: http://www.cvshome.org/ --- contrib/cvs/diff/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/cvs/diff/io.c') diff --git a/contrib/cvs/diff/io.c b/contrib/cvs/diff/io.c index 730c09a..9eb2d5d 100644 --- a/contrib/cvs/diff/io.c +++ b/contrib/cvs/diff/io.c @@ -101,7 +101,7 @@ sip (current, skip_test) #if HAVE_SETMODE int oldmode = setmode (current->desc, O_BINARY); #endif - size_t n = read (current->desc, current->buffer, current->bufsize); + ssize_t n = read (current->desc, current->buffer, current->bufsize); if (n == -1) pfatal_with_name (current->name); current->buffered_chars = n; @@ -128,7 +128,7 @@ void slurp (current) struct file_data *current; { - size_t cc; + ssize_t cc; if (current->desc < 0) /* The file is nonexistent. */ -- cgit v1.1