summaryrefslogtreecommitdiff
path: root/src/os_win32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-10-24 14:33:43 +0200
committerBram Moolenaar <Bram@vim.org>2010-10-24 14:33:43 +0200
commit8bbe993c79023261d83931dd9effc7caf19bf659 (patch)
tree6abd753af1e7231b3bd91fc351e4886c18fc131f /src/os_win32.c
parentebbcb824baf770e42ad53c532905a329d762e94e (diff)
downloadvim-git-8bbe993c79023261d83931dd9effc7caf19bf659.tar.gz
updated for version 7.3.035v7.3.035
Problem: Stray semicolon after if statement. (Hari G) Solution: Remove the semicolon.
Diffstat (limited to 'src/os_win32.c')
-rw-r--r--src/os_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index 100c39567..3fdd41b6d 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -231,7 +231,7 @@ get_exe_name(void)
* "!xxd" it's found in our starting directory. Needed because
* SearchPath() also looks there. */
p = mch_getenv("PATH");
- if (STRLEN(p) + STRLEN(exe_path) + 2 < MAXPATHL);
+ if (STRLEN(p) + STRLEN(exe_path) + 2 < MAXPATHL)
{
STRCPY(temp, p);
STRCAT(temp, ";");