# HG changeset patch # User Bram Moolenaar # Date 1625688903 -7200 # Node ID ff769f272e7f19736b86db49d54a04084e54b520 # Parent 166e1c1ad0c93b45896fe906b40e6695cb84e580 patch 8.2.3119: compiler warning for unused argument Commit: https://github.com/vim/vim/commit/6a9e5c69cf36676e65ae191264872a3e41bde37f Author: Bram Moolenaar Date: Wed Jul 7 22:13:08 2021 +0200 patch 8.2.3119: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Add UNUSED. diff --git a/src/evalfunc.c b/src/evalfunc.c --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -522,7 +522,7 @@ ret_list_dict_any(int argcount UNUSED, t return &t_list_dict_any; } static type_T * -ret_list_items(int argcount, type_T **argtypes UNUSED) +ret_list_items(int argcount UNUSED, type_T **argtypes UNUSED) { return &t_list_list_any; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3119, +/**/ 3118, /**/ 3117,