From 33c5506e97dc04a46fb7e06c03de144b66788520 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 26 Feb 2011 18:52:21 +0100 Subject: disable build warnings in utils Disable some build warnings in utils. Signed-off-by: Peter S. Mazinger --- utils/ldconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/ldconfig.c') diff --git a/utils/ldconfig.c b/utils/ldconfig.c index a25de260a..024be7ca4 100644 --- a/utils/ldconfig.c +++ b/utils/ldconfig.c @@ -568,7 +568,7 @@ static char *get_extpath(void) if ((file = fopen(realconffile, "r")) != NULL) { fstat(fileno(file), &st); res = xmalloc(st.st_size + 1); - fread(res, 1, st.st_size, file); + (void)fread(res, 1, st.st_size, file); fclose(file); res[st.st_size] = '\0'; -- cgit v1.2.3