Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 1cbf03a

Browse files
Correct syntax error in oclint.vim
Path: syntastic/syntax_checkers/c/oclint.vim Line: 28 Char: 106 Correction: ' ' -> ')'
1 parent 18e27cd commit 1cbf03a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syntax_checkers/c/oclint.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function! SyntaxCheckers_c_oclint_GetLocList() dict
2525
let buf = bufnr('')
2626

2727
let makeprg = self.makeprgBuild({
28-
\ 'post_args': '-- -c ' . syntastic#c#ReadConfig(syntastic#util#bufVar(buf, 'oclint_config_file') })
28+
\ 'post_args': '-- -c ' . syntastic#c#ReadConfig(syntastic#util#bufVar(buf, 'oclint_config_file'))})
2929

3030
let errorformat =
3131
\ '%E%f:%l:%c: fatal error: %m,' .

0 commit comments

Comments
 (0)