mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 04:20:27 +01:00
Fixed const correctness in functions using 'wusergnusteppath'
The change introduced in previous commit for const correctness has a small impact on WindowMaker's code, this patch fixes all the new warnings.
This commit is contained in:
committed by
Carlos R. Mafra
parent
cd1c55d63c
commit
a18fd7cd69
@@ -185,7 +185,8 @@ void makeThemePack(WMPropList * style, char *themeName)
|
||||
WMPropList *value;
|
||||
int i;
|
||||
size_t themeNameLen;
|
||||
char *themeDir, *t;
|
||||
char *themeDir;
|
||||
const char *t;
|
||||
|
||||
if ((t = wusergnusteppath()) == NULL)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user