summaryrefslogtreecommitdiff
path: root/ale_linters/c/gcc.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/c/gcc.vim')
-rw-r--r--ale_linters/c/gcc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/c/gcc.vim b/ale_linters/c/gcc.vim
index c89fae72..7eed0f45 100644
--- a/ale_linters/c/gcc.vim
+++ b/ale_linters/c/gcc.vim
@@ -14,7 +14,7 @@ function! ale_linters#c#gcc#GetCommand(buffer) abort
" headers in the same directory.
return 'gcc -S -x c -fsyntax-only '
\ . '-iquote ' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h'))
- \ . ' ' . g:ale_c_gcc_options . ' -'
+ \ . ' ' . ale#Var(a:buffer, 'c_gcc_options') . ' -'
endfunction
call ale#linter#Define('c', {