summaryrefslogtreecommitdiff
path: root/src/helper/options.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:37:21 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:37:21 +0000
commit95d2a2372421aeddae01f1af51279ab7989e46b5 (patch)
treeee7907029137638c353969e5ada42e4dc7dd2779 /src/helper/options.c
parent9af5e445b796f3b4a51d41f9d2eeaf1f5cd78e3b (diff)
downloadopenocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.gz
openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.bz2
openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.xz
openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.zip
- Replace 'for(' with 'for ('.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2360 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 c48939e5..23491d3f 100644
--- a/src/helper/options.c
+++ b/src/helper/options.c
@@ -90,7 +90,7 @@ int add_default_dirs(void)
GetModuleFileName (NULL, strExePath, MAX_PATH);
*strrchr(strExePath, '\\')=0;
strcat(strExePath, "/../lib/"PACKAGE);
- for(p=strExePath; *p; p++) {
+ for (p=strExePath; *p; p++) {
if (*p == '\\')
*p = '/';
}