From 1cbf03ac9bbb3817e6ab3cf9ba9cea41d0d2b06e Mon Sep 17 00:00:00 2001 From: Jack Stillwell Date: Mon, 28 Jan 2019 10:51:10 -0500 Subject: [PATCH] Correct syntax error in oclint.vim Path: syntastic/syntax_checkers/c/oclint.vim Line: 28 Char: 106 Correction: ' ' -> ')' --- syntax_checkers/c/oclint.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/c/oclint.vim b/syntax_checkers/c/oclint.vim index be005fdd..c08e513b 100644 --- a/syntax_checkers/c/oclint.vim +++ b/syntax_checkers/c/oclint.vim @@ -25,7 +25,7 @@ function! SyntaxCheckers_c_oclint_GetLocList() dict let buf = bufnr('') let makeprg = self.makeprgBuild({ - \ 'post_args': '-- -c ' . syntastic#c#ReadConfig(syntastic#util#bufVar(buf, 'oclint_config_file') }) + \ 'post_args': '-- -c ' . syntastic#c#ReadConfig(syntastic#util#bufVar(buf, 'oclint_config_file'))}) let errorformat = \ '%E%f:%l:%c: fatal error: %m,' .