Skip to content

Commit 6d99629

Browse files
Mat33920Mathis Bernadet
andauthored
Add missing space to gcc linter (#4791). (#5088)
Co-authored-by: Mathis Bernadet <[email protected]>
1 parent f730ded commit 6d99629

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ale_linters/asm/gcc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function! ale_linters#asm#gcc#GetCommand(buffer) abort
99
" -fsyntax-only doesn't catch everything.
1010
return '%e -x assembler'
1111
\ . ' -o ' . g:ale#util#nul_file
12-
\ . '-iquote %s:h'
12+
\ . ' -iquote %s:h'
1313
\ . ' ' . ale#Var(a:buffer, 'asm_gcc_options') . ' -'
1414
endfunction
1515

test/linter/test_asm_gcc.vader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Before:
33
call ale#test#SetFilename('test.cpp')
44
let b:command_tail = ' -x assembler'
55
\ . ' -o ' . (has('win32') ? 'nul': '/dev/null')
6-
\ . '-iquote %s:h'
6+
\ . ' -iquote %s:h'
77
\ . ' -Wall -'
88

99
After:

0 commit comments

Comments
 (0)