From: Bram Moolenaar Date: Wed, 7 Sep 2022 20:46:56 +0000 (+0100) Subject: patch 9.0.0412: compiler warning for unused argument X-Git-Tag: v9.0.0412 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5a420fb33518e08313f653f3031bc36f949e086;p=vim patch 9.0.0412: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Add UNUSED. --- diff --git a/src/charset.c b/src/charset.c index 79a281580..d26a696c7 100644 --- a/src/charset.c +++ b/src/charset.c @@ -943,7 +943,7 @@ vim_isprintc_strict(int c) init_chartabsize_arg( chartabsize_T *cts, win_T *wp, - linenr_T lnum, + linenr_T lnum UNUSED, colnr_T col, char_u *line, char_u *ptr) diff --git a/src/version.c b/src/version.c index 78a1ae096..e243a4fc9 100644 --- a/src/version.c +++ b/src/version.c @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 412, /**/ 411, /**/