Skip to content

Commit

Permalink
Correct syntax error in oclint.vim
Browse files Browse the repository at this point in the history
Path: syntastic/syntax_checkers/c/oclint.vim
Line: 28
Char: 106
Correction: ' ' -> ')'
  • Loading branch information
JackStillwell authored Jan 28, 2019
1 parent 18e27cd commit 1cbf03a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax_checkers/c/oclint.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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,' .
Expand Down

0 comments on commit 1cbf03a

Please sign in to comment.