aboutsummaryrefslogtreecommitdiffstats
path: root/extension/arrayparm.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:40:49 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:40:49 +0300
commit85c0d5edb781c9f31b79e48452b1ca68643f41de (patch)
tree14efbc59b30cdd626a208d6391f3ed226387054e /extension/arrayparm.c
parent6cc7d587a710606d3fe52222707739c7cc1b8651 (diff)
downloadegawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.tar.gz
egawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.tar.bz2
egawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.zip
Move to gawk-3.1.4.
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);