mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 07:02:30 +01:00
Fix icon.c unused variable compiler warning
Just to please the compiler as it's reporting: icon.c: In function 'get_icon_cache_path': icon.c:425:13: warning: unused variable 'len' [-Wunused-variable]
This commit is contained in:
committed by
Carlos R. Mafra
parent
2a14004fc3
commit
812930b7cd
@@ -422,7 +422,7 @@ static char *get_icon_cache_path(void)
|
||||
{
|
||||
const char *prefix;
|
||||
char *path;
|
||||
int len, ret;
|
||||
int ret;
|
||||
|
||||
prefix = wuserdatapath();
|
||||
path = wstrconcat(prefix, CACHE_ICON_PATH "/");
|
||||
|
||||
Reference in New Issue
Block a user