From a68b0d31a37a86785b3dbeeee3fad96ee71fadcd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 2 Oct 1996 01:40:17 +0000 Subject: update from main archive 961001 --- libio/genops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libio/genops.c') diff --git a/libio/genops.c b/libio/genops.c index 7c2dcba..bd741ec 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -329,7 +329,7 @@ DEFUN(_IO_default_xsputn, (f, data, n), _IO_ssize_t count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */ if (count > 0) { - if (count > more) + if ((_IO_size_t) count > more) count = more; if (count > 20) { @@ -374,7 +374,7 @@ DEFUN(_IO_default_xsgetn, (fp, data, n), _IO_ssize_t count = fp->_IO_read_end - fp->_IO_read_ptr; /* Data available. */ if (count > 0) { - if (count > more) + if ((_IO_size_t) count > more) count = more; if (count > 20) { -- cgit v1.1