summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-03 12:22:53 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-03 12:22:53 +0100
commitf1d2501ebe33e148886c2914acd33140e20ee222 (patch)
tree49e0f2df5cf7358f4bbd4f5ec25a2359753ca671 /src/ex_cmds2.c
parent00ded43a5a85df57abb74f9e3a38a401f6fbd8fd (diff)
patch 7.4.1476v7.4.1476
Problem: Function arguments marked as unused while they are not. Solution: Remove UNUSED. (Yegappan Lakshmanan)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 88257ccddd..e1a0dfd11e 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2033,7 +2033,7 @@ set_arglist(char_u *str)
static int
do_arglist(
char_u *str,
- int what UNUSED,
+ int what,
int after UNUSED) /* 0 means before first one */
{
garray_T new_ga;