# HG changeset patch # User Bram Moolenaar # Date 1662584406 -7200 # Node ID 1e6d387bd51f72f7c310d986e6aa9fcfbc18679f # Parent c51f0fe92cf5356458df1d95144f77f9aeb684ff patch 9.0.0412: compiler warning for unused argument Commit: https://github.com/vim/vim/commit/e5a420fb33518e08313f653f3031bc36f949e086 Author: Bram Moolenaar Date: Wed Sep 7 21:46:56 2022 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 412, +/**/ 411, /**/ 410,