Skip to content

Commit efc761d

Browse files
committed
fix printf format
1 parent 21720f3 commit efc761d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

autoload/vimlparser.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5196,7 +5196,7 @@ function! s:Compiler.compile_lockvar(node) abort
51965196
if a:node.depth is# s:NIL
51975197
call self.out('(lockvar %s)', join(list, ' '))
51985198
else
5199-
call self.out('(lockvar %s %s)', a:node.depth, join(list, ' '))
5199+
call self.out('(lockvar %d %s)', a:node.depth, join(list, ' '))
52005200
endif
52015201
endfunction
52025202

@@ -5205,7 +5205,7 @@ function! s:Compiler.compile_unlockvar(node) abort
52055205
if a:node.depth is# s:NIL
52065206
call self.out('(unlockvar %s)', join(list, ' '))
52075207
else
5208-
call self.out('(unlockvar %s %s)', a:node.depth, join(list, ' '))
5208+
call self.out('(unlockvar %d %s)', a:node.depth, join(list, ' '))
52095209
endif
52105210
endfunction
52115211

go/vimlparser.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)