summaryrefslogtreecommitdiff
path: root/src/helper/options.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:35:09 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:35:09 +0000
commite43979e7020ea9d05a3c0a2af444f292eacb6c53 (patch)
treebfe4610aa5c9f094b8d214588e8d1d6356e6cb7d /src/helper/options.c
parent8591335ba6556d788999ac29f1efbdbe0cb3554a (diff)
downloadopenocd+libswd-e43979e7020ea9d05a3c0a2af444f292eacb6c53.tar.gz
openocd+libswd-e43979e7020ea9d05a3c0a2af444f292eacb6c53.tar.bz2
openocd+libswd-e43979e7020ea9d05a3c0a2af444f292eacb6c53.tar.xz
openocd+libswd-e43979e7020ea9d05a3c0a2af444f292eacb6c53.zip
- Replace 'if(' with 'if ('.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2357 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/options.c')
-rw-r--r--src/helper/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/options.c b/src/helper/options.c
index 8242a8dd..c48939e5 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);