From 9c272a9e52c914d6630f2cc887da89f63e7e983a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 16 Aug 2019 21:54:27 +0200 Subject: patch 8.1.1862: Coverity warns for not using return value Problem: Coverity warns for not using return value. Solution: Add "(void)" to avoid the warning. --- src/normal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/normal.c') diff --git a/src/normal.c b/src/normal.c index 2067542d3..7951bd5c3 100644 --- a/src/normal.c +++ b/src/normal.c @@ -8065,7 +8065,7 @@ nv_g_cmd(cmdarg_T *cap) { if (cap->count1 > 1) // if it fails, let the cursor still move to the last char - cursor_down(cap->count1 - 1, FALSE); + (void)cursor_down(cap->count1 - 1, FALSE); i = curwin->w_leftcol + curwin->w_width - col_off - 1; coladvance((colnr_T)i); -- cgit v1.2.1