diff options
Diffstat (limited to 'src/helper/options.c')
-rw-r--r-- | src/helper/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/options.c b/src/helper/options.c index 8242a8d..c48939e 100644 --- a/src/helper/options.c +++ b/src/helper/options.c @@ -91,7 +91,7 @@ int add_default_dirs(void) *strrchr(strExePath, '\\')=0; strcat(strExePath, "/../lib/"PACKAGE); for(p=strExePath; *p; p++) { - if(*p == '\\') + if (*p == '\\') *p = '/'; } add_script_search_dir(strExePath); |