From 57cfb95758d8a7a86c7f7751373ad0b5b1ce09f8 Mon Sep 17 00:00:00 2001 From: Rui Abreu Ferreira Date: Sat, 9 Jan 2016 00:58:52 +0000 Subject: win32: Fix syntax error in #ifndef block. #3968 The block is only compiled if the system is NOT WIN32, but the closing parenthesis for the statement opened outside the block is closed inside the block. --- src/nvim/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/path.c b/src/nvim/path.c index d689eaf8cb..23b22b67f1 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -581,9 +581,9 @@ static size_t do_path_expand(garray_T *gap, const char_u *path, && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL #ifndef WIN32 || (!p_fic && (flags & EW_ICASE) - && isalpha(PTR2CHAR(path_end)))) + && isalpha(PTR2CHAR(path_end))) #endif - ) { + )) { e = p; } if (has_mbyte) { -- cgit