diff options
author | James McCoy <jamessan@jamessan.com> | 2016-05-11 21:53:38 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-05-14 17:16:18 -0400 |
commit | fcd5d3ad21dd93b47650b8b9f3e0c21d416ffbec (patch) | |
tree | 356de9c0628486d13b51a6d4f9ada7b35d7bf30c /src/nvim/ex_cmds2.c | |
parent | 8c399d6b37f967d0ec9991d873666036de196a0a (diff) | |
download | rneovim-fcd5d3ad21dd93b47650b8b9f3e0c21d416ffbec.tar.gz rneovim-fcd5d3ad21dd93b47650b8b9f3e0c21d416ffbec.tar.bz2 rneovim-fcd5d3ad21dd93b47650b8b9f3e0c21d416ffbec.zip |
Linting fixups for vim-patch:7.4.1037
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index b1dad21b02..df387f9a60 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1263,8 +1263,9 @@ int check_changed_any(bool hidden, bool unload) ++bufcount; } - if (bufcount == 0) - return FALSE; + if (bufcount == 0) { + return false; + } bufnrs = xmalloc(sizeof(*bufnrs) * bufcount); |