From 6a9e5c69cf36676e65ae191264872a3e41bde37f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 7 Jul 2021 22:13:08 +0200 Subject: patch 8.2.3119: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Add UNUSED. --- src/evalfunc.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/evalfunc.c b/src/evalfunc.c index 34eac6987..bdfb57088 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -522,7 +522,7 @@ ret_list_dict_any(int argcount UNUSED, type_T **argtypes UNUSED) 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 index e080a2fa3..03e2546c6 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3119, /**/ 3118, /**/ -- cgit v1.2.1