summaryrefslogtreecommitdiff
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:47:02 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:47:02 +0300
commit315bd501ca696bc3e3c938b4604d8dac7a6f512f (patch)
treecf992f0df002126292f7487ca6c0d36d7fe748b9 /ext.c
parent85c0d5edb781c9f31b79e48452b1ca68643f41de (diff)
downloadgawk-315bd501ca696bc3e3c938b4604d8dac7a6f512f.tar.gz
Move to gawk 3.1.5.gawk-3.1.5
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext.c b/ext.c
index 018f90ad..b8c18fd5 100644
--- a/ext.c
+++ b/ext.c
@@ -7,7 +7,7 @@
*/
/*
- * Copyright (C) 1995 - 2001, 2003, 2004 the Free Software Foundation, Inc.
+ * Copyright (C) 1995 - 2001, 2003-2005 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -24,7 +24,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "awk.h"
@@ -198,7 +198,7 @@ get_actual_argument(NODE *tree, unsigned int i, int optional, int want_array)
if (t == NULL) {
if (i >= tree->param_cnt) /* must be fatal */
- fatal(_("function `%s' defined to take no more than `%d' argument(s)"),
+ fatal(_("function `%s' defined to take no more than %d argument(s)"),
tree->param, tree->param_cnt);
if (! optional)
fatal(_("function `%s': missing argument #%d"),