1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-01 01:32:04 +03:00

GH-376 Cast to bool

This commit is contained in:
Tae Won Ha 2017-01-03 10:04:27 +01:00
parent 5fbc773584
commit 38b301de10
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -772,8 +772,8 @@ static NeoVimBuffer *buffer_for(buf_T *buf) {
NeoVimBuffer *buffer = [[NeoVimBuffer alloc] initWithHandle:buf->handle
unescapedPath:fileName
dirty:buf->b_changed
readOnly:buf->b_p_ro
dirty:(bool) buf->b_changed
readOnly:(bool) buf->b_p_ro
current:current];
return [buffer autorelease];