1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-07 14:24:14 +01:00

Constify the argument of wstrdup()

This commit is contained in:
Carlos R. Mafra
2010-03-16 16:27:43 +01:00
parent de881d9c03
commit 034339320f
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ char *wtrimspace(char *s)
return c;
}
char *wstrdup(char *str)
char *wstrdup(const char *str)
{
assert(str != NULL);