commit | 6a9e5c69cf36676e65ae191264872a3e41bde37f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 07 22:13:08 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 07 22:13:08 2021 +0200 |
tree | be562e7bdff68d09880d2cb0ac75e720b2d9a519 | |
parent | 5ede5b231eb2269b0ef335f3cd24e4c4b1d4395b [diff] [blame] |
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 index 34eac69..bdfb570 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c
@@ -522,7 +522,7 @@ 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; }