From 93349d71183d4a50ef5ad90b32cb96b9f84d3eec Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 16 May 2019 15:37:28 +0100 Subject: [PATCH] util/os_file: suppress sign comparison warning Signed-off-by: Eric Engestrom Reviewed-by: Eric Anholt --- src/util/os_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2