mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-14 21:15:50 +01:00
WINGs: Properly mark 'const' some 'char*' in the public API
Update all the callers in our code to deal with the const qualifier where the compiler reports an issue.
This commit is contained in:
committed by
Carlos R. Mafra
parent
03ec24502d
commit
a079544647
@@ -51,7 +51,8 @@ const char *wusergnusteppath()
|
||||
{
|
||||
static const char subdir[] = "/GNUstep";
|
||||
static char *path = NULL;
|
||||
char *gspath, *h;
|
||||
char *gspath;
|
||||
const char *h;
|
||||
int pathlen;
|
||||
|
||||
if (path)
|
||||
|
||||
Reference in New Issue
Block a user