From 16e9c853dfdea32fcf187fda147cafebd3dfc5dd Mon Sep 17 00:00:00 2001 From: Nicolas Cornu Date: Mon, 7 Sep 2015 15:16:35 +0200 Subject: hasFolding return bool now --- src/nvim/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/mouse.c') diff --git a/src/nvim/mouse.c b/src/nvim/mouse.c index 5d1c5b35db..3ae1a6a890 100644 --- a/src/nvim/mouse.c +++ b/src/nvim/mouse.c @@ -232,7 +232,7 @@ retnomove: if (!first && count > -row) break; first = false; - hasFolding(curwin->w_topline, &curwin->w_topline, NULL); + (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL); if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) { ++curwin->w_topfill; } else { -- cgit