aboutsummaryrefslogtreecommitdiffstats
path: root/extension/filefuncs.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-03-11 08:29:41 -0600
committerArnold D. Robbins <arnold@skeeve.com>2020-03-11 08:29:41 -0600
commit73e440b988942a2933151bd9e0a1b78b9268d5bc (patch)
treeb646ec846350234a938b2352ff75af0c6b4d2f7f /extension/filefuncs.c
parentc1929597bd14005486a7c1b07d7d706d36f473ad (diff)
downloadegawk-73e440b988942a2933151bd9e0a1b78b9268d5bc.tar.gz
egawk-73e440b988942a2933151bd9e0a1b78b9268d5bc.tar.bz2
egawk-73e440b988942a2933151bd9e0a1b78b9268d5bc.zip
More message updates.
Diffstat (limited to 'extension/filefuncs.c')
-rw-r--r--extension/filefuncs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/filefuncs.c b/extension/filefuncs.c
index c47a2d57..9078c107 100644
--- a/extension/filefuncs.c
+++ b/extension/filefuncs.c
@@ -845,19 +845,19 @@ do_fts(int nargs, awk_value_t *result, struct awk_ext_func *unused)
lintwarn(ext_id, _("fts: called with incorrect number of arguments, expecting 3"));
if (! get_argument(0, AWK_ARRAY, & pathlist)) {
- warning(ext_id, _("fts: first parameter is not an array"));
+ warning(ext_id, _("fts: first argument is not an array"));
update_ERRNO_int(EINVAL);
goto out;
}
if (! get_argument(1, AWK_NUMBER, & flagval)) {
- warning(ext_id, _("fts: second parameter is not a number"));
+ warning(ext_id, _("fts: second argument is not a number"));
update_ERRNO_int(EINVAL);
goto out;
}
if (! get_argument(2, AWK_ARRAY, & dest)) {
- warning(ext_id, _("fts: third parameter is not an array"));
+ warning(ext_id, _("fts: third argument is not an array"));
update_ERRNO_int(EINVAL);
goto out;
}