From e43979e7020ea9d05a3c0a2af444f292eacb6c53 Mon Sep 17 00:00:00 2001 From: zwelch Date: Tue, 23 Jun 2009 22:35:09 +0000 Subject: - Replace 'if(' with 'if ('. git-svn-id: svn://svn.berlios.de/openocd/trunk@2357 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 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); -- cgit v1.2.3