This patch removes these warnings:
defaults.c: In function ‘getFont’:
defaults.c:2011:84: warning: unused parameter ‘addr’ [-Wunused-parameter]
static int getFont(WScreen * scr, WDefaultEntry * entry, WMPropList * value,
void *addr, void **ret)
^
defaults.c: In function ‘getColor’:
defaults.c:2036:85: warning: unused parameter ‘addr’ [-Wunused-parameter]
static int getColor(WScreen * scr, WDefaultEntry * entry, WMPropList * value,
void *addr, void **ret)
---
src/defaults.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/defaults.c b/src/defaults.c
index 5bf8267..c5fd853 100644
--- a/src/defaults.c
+++ b/src/defaults.c
@@ -2032,6 +2032,8 @@ static int getFont(WScreen * scr, WDefaultEntry * entry,
WMPropList * value, voi
static WMFont *font;
const char *val;
+ (void) addr;
+
GET_STRING_OR_DEFAULT("Font", val);
font = WMCreateFont(scr->wmscreen, val);
@@ -2058,6 +2060,8 @@ static int getColor(WScreen * scr, WDefaultEntry * entry,
WMPropList * value, vo
const char *val;
int second_pass = 0;
+ (void) addr;
+
GET_STRING_OR_DEFAULT("Color", val);
again:
--
1.8.5.2
--
To unsubscribe, send mail to [email protected].