From cde885473099296c4837de261833f48b24caf87c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 11 Aug 2015 19:14:00 +0200 Subject: patch 7.4.822 Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt) --- src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui.c') diff --git a/src/ui.c b/src/ui.c index 10ae73177..7bbf2838e 100644 --- a/src/ui.c +++ b/src/ui.c @@ -2903,7 +2903,7 @@ retnomove: break; first = FALSE; #ifdef FEAT_FOLDING - hasFolding(curwin->w_topline, &curwin->w_topline, NULL); + (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL); #endif #ifdef FEAT_DIFF if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) -- cgit v1.2.1