From e56ff71c9dde918b4d3d2367e7f8e339a05bda61 Mon Sep 17 00:00:00 2001
From: Mathieu L Bouchard <matju@artengine.ca>
Date: Wed, 23 Jul 2014 23:58:24 -0400
Subject: [PATCH] * disabled warnings about unused parameters (which are
 pointless) & enabled warnings about other unused local variables (which allow
 to find dead code)

---
 pd/src/makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pd/src/makefile.in b/pd/src/makefile.in
index 0b0f377f3..e42b6c996 100644
--- a/pd/src/makefile.in
+++ b/pd/src/makefile.in
@@ -41,7 +41,7 @@ LDFLAGS = @LDFLAGS@
 LIB =  @PDLIB@
 
 WARN_CFLAGS = -Wall -W -Wstrict-prototypes \
-    -Wno-unused -Wno-parentheses -Wno-switch
+    -Wno-unused-parameter -Wno-parentheses -Wno-switch
 ARCH_CFLAGS = -DPD 
 
 CFLAGS = @CFLAGS@ $(ARCH_CFLAGS) $(WARN_CFLAGS) $(CPPFLAGS) $(MORECFLAGS)
-- 
GitLab