From 23669bd7df57b2562e766570d587df942c3b57d6 Mon Sep 17 00:00:00 2001 From: oni-link Date: Thu, 7 Jan 2016 12:10:15 +0100 Subject: coverity/62611: Nesting level does not match indentation The nested line was the else-branch of an if-then-else block that dealt with cryptography, but after commit 85338fe1d5a56f82546e16c305c2048c081771e0 (Remove cryptography) removed the if-then part, the indentation of this line was not adjusted. --- src/nvim/fileio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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; -- cgit