diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-07 10:11:21 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-07 10:11:21 -0500 |
commit | e57e303c6bf66b4907bf7e843be2bcff89b83c09 (patch) | |
tree | 82bb13203df1dbce6f8d1ccde0f7968a2a41ad05 | |
parent | 2d39eea9f06b0cdbf9e6a6c31204c3d31235c39d (diff) | |
parent | 23669bd7df57b2562e766570d587df942c3b57d6 (diff) | |
download | rneovim-e57e303c6bf66b4907bf7e843be2bcff89b83c09.tar.gz rneovim-e57e303c6bf66b4907bf7e843be2bcff89b83c09.tar.bz2 rneovim-e57e303c6bf66b4907bf7e843be2bcff89b83c09.zip |
Merge pull request #3956 from oni-link/cov.62611
coverity/62611: Nesting level does not match indentation
-rw-r--r-- | src/nvim/fileio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 23292ff4ac..05cb8f8f8c 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -1878,7 +1878,8 @@ failed: } if (msg_add_fileformat(fileformat)) c = TRUE; - msg_add_lines(c, (long)linecnt, filesize); + + msg_add_lines(c, (long)linecnt, filesize); xfree(keep_msg); keep_msg = NULL; |