From 06323bab3c98bfe4844158917c6266beee6675ff Mon Sep 17 00:00:00 2001 From: Garret Kelly Date: Fri, 19 Dec 2014 19:05:57 +0000 Subject: [PATCH] Ignore unused return values for functions that care. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9fd3559e79..e1e95c43cd 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,8 @@ CWFLAGS=-Wall \ -Wno-sign-compare \ -Wno-unused-parameter \ -Wno-missing-field-initializers \ - -Werror + -Wno-error=unused-result \ + -Werror ifdef NO_SILENT_RULES %.o: %.c $(CORE)