From: Eric Engestrom Date: Thu, 16 May 2019 14:37:28 +0000 (+0100) Subject: util/os_file: suppress sign comparison warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93349d71183d4a50ef5ad90b32cb96b9f84d3eec;p=mesa.git util/os_file: suppress sign comparison warning Signed-off-by: Eric Engestrom Reviewed-by: Eric Anholt --- diff --git a/src/util/os_file.c b/src/util/os_file.c index 6e78a231d67..a700f3aada3 100644 --- a/src/util/os_file.c +++ b/src/util/os_file.c @@ -72,7 +72,7 @@ os_read_file(const char *filename) ssize_t actually_read; size_t offset = 0, remaining = len - 1; - while ((actually_read = readN(fd, buf + offset, remaining)) == remaining) { + while ((actually_read = readN(fd, buf + offset, remaining)) == (ssize_t)remaining) { char *newbuf = realloc(buf, 2 * len); if (!newbuf) { free(buf);