summaryrefslogtreecommitdiff
path: root/src/helper/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/options.c')
-rw-r--r--src/helper/options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/helper/options.c b/src/helper/options.c
index 23491d3f..92557ba3 100644
--- a/src/helper/options.c
+++ b/src/helper/options.c
@@ -70,7 +70,7 @@ int add_default_dirs(void)
/* Either this code will *always* work or it will SEGFAULT giving
* excellent information on the culprit.
*/
- *strrchr(strExePath, '\\')=0;
+ *strrchr(strExePath, '\\') = 0;
strcat(strExePath, "\\..");
add_script_search_dir(strExePath);
}
@@ -88,9 +88,9 @@ int add_default_dirs(void)
char strExePath [MAX_PATH];
char *p;
GetModuleFileName (NULL, strExePath, MAX_PATH);
- *strrchr(strExePath, '\\')=0;
+ *strrchr(strExePath, '\\') = 0;
strcat(strExePath, "/../lib/"PACKAGE);
- for (p=strExePath; *p; p++) {
+ for (p = strExePath; *p; p++) {
if (*p == '\\')
*p = '/';
}