aboutsummaryrefslogtreecommitdiffstats
path: root/extension/arrayparm.c
diff options
context:
space:
mode:
Diffstat (limited to 'extension/arrayparm.c')
-rw-r--r--extension/arrayparm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/extension/arrayparm.c b/extension/arrayparm.c
index 6c627d65..d2e18d5b 100644
--- a/extension/arrayparm.c
+++ b/extension/arrayparm.c
@@ -6,10 +6,11 @@
* 10/2001
*
* Revised 7/2003
+ * Revised 6/2004
*/
/*
- * Copyright (C) 2001, 2003 the Free Software Foundation, Inc.
+ * Copyright (C) 2001, 2003, 2004 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -47,7 +48,7 @@ NODE *tree;
NODE *var, *sub, *val;
NODE **elemval;
- if (do_lint && tree->param_cnt > 3)
+ if (do_lint && get_curfunc_arg_count() > 3)
lintwarn("mkarray: called with too many arguments");
var = get_argument(tree, 0);