diff options
author | peter <peter@FreeBSD.org> | 2002-09-02 05:50:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-09-02 05:50:28 +0000 |
commit | cf46dfb750863d760d19b9858b0a336b158275da (patch) | |
tree | 8440832ece5130fad994f5f3489b01676ab1ca4a /contrib/cvs/diff/io.c | |
parent | 92c0df1bed708821e09e92931a5309cd3abd82fb (diff) | |
download | FreeBSD-src-cf46dfb750863d760d19b9858b0a336b158275da.zip FreeBSD-src-cf46dfb750863d760d19b9858b0a336b158275da.tar.gz |
Import cvs-1.11.2 onto vendor branch
Obtained from: http://www.cvshome.org/
Diffstat (limited to 'contrib/cvs/diff/io.c')
-rw-r--r-- | contrib/cvs/diff/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |