diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-04-03 22:16:08 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-04-03 22:16:08 +0300 |
commit | 4271b995d64430e794e344f0c4985162eb991052 (patch) | |
tree | ba85fed9ded092df02472c8503d507deede3625f /extension/inplace.c | |
parent | 22efd6f841af3073c89fbaac79482e925d5d5da3 (diff) | |
download | egawk-4271b995d64430e794e344f0c4985162eb991052.tar.gz egawk-4271b995d64430e794e344f0c4985162eb991052.tar.bz2 egawk-4271b995d64430e794e344f0c4985162eb991052.zip |
Fix a message in extension/inplace.c.
Diffstat (limited to 'extension/inplace.c')
-rw-r--r-- | extension/inplace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/inplace.c b/extension/inplace.c index ecc3afdc..f89017b7 100644 --- a/extension/inplace.c +++ b/extension/inplace.c @@ -208,7 +208,7 @@ do_inplace_end(int nargs, awk_value_t *result, struct awk_ext_func *unused) assert(result != NULL); if (nargs != 2) - fatal(ext_id, _("inplace_begin: expects 2 arguments but called with %d"), nargs); + fatal(ext_id, _("inplace_end: expects 2 arguments but called with %d"), nargs); if (! get_argument(0, AWK_STRING, &filename)) fatal(ext_id, _("inplace_end: cannot retrieve 1st argument as a string filename")); |