From e69e6458cca9adb9669850ac4055df38a20a70d1 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 20 Jan 2015 16:52:04 -0800 Subject: [PATCH] Fix signed/unsigned comparison that was upsetting clang. bionic/libc/stdio/fread.c:86:27: error: comparison of integers of different signs: 'int' and 'size_t' (aka 'unsigned int') [-Werror,-Wsign-compare] Change-Id: Ia7e1e053e0cb13113e8f2eede820be013acbab82 --- libc/stdio/fread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/stdio/fread.c b/libc/stdio/fread.c index 9e5758ff8..baf62b941 100644 --- a/libc/stdio/fread.c +++ b/libc/stdio/fread.c @@ -83,7 +83,7 @@ fread(void *buf, size_t size, size_t count, FILE *fp) /* * Copy data out of the buffer. */ - size_t buffered_bytes = MIN(fp->_r, total); + size_t buffered_bytes = MIN((size_t) fp->_r, total); memcpy(dst, fp->_p, buffered_bytes); fp->_p += buffered_bytes; fp->_r -= buffered_bytes;