From 95d2a2372421aeddae01f1af51279ab7989e46b5 Mon Sep 17 00:00:00 2001 From: zwelch Date: Tue, 23 Jun 2009 22:37:21 +0000 Subject: - Replace 'for(' with 'for ('. git-svn-id: svn://svn.berlios.de/openocd/trunk@2360 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/helper/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/helper/options.c') 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 = '/'; } -- cgit v1.2.3