1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-22 14:08:06 +01:00

util: Value stored to 'ret' is never read

Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
This commit is contained in:
Amadeusz Sławiński
2014-05-18 13:32:43 +02:00
committed by Carlos R. Mafra
parent 1b69c49fb2
commit 677117276c

View File

@@ -363,7 +363,6 @@ static Bool getBooleanValue(const char *line)
char *p;
int ret;
ret = 0;
getStringValue(&p, line);
ret = strcmp(p, "true") == 0 ? True : False;
wfree(p);