diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-11-29 08:41:37 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-11-29 08:41:37 -0800 |
commit | 0b409a1a9ccc9d7d566a0a867eec4f6eb5a1f5e1 (patch) | |
tree | c639350be2b7a0db5aa3d4dae3c8ce2cce80a4aa /paths.c | |
parent | d064c9a6c6ea4aff356b5cde90f5afc92cb705f4 (diff) |
Added code to persist config back to a file
--HG--
branch : nuklear_ui
Diffstat (limited to 'paths.c')
-rw-r--r-- | paths.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ void get_initial_browse_path(char **dst) tern_free(vars); } -char *path_append(char *base, char *suffix) +char *path_append(const char *base, const char *suffix) { if (!strcmp(suffix, "..")) { #ifdef _WIN32 |