summaryrefslogtreecommitdiff
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-05-05 20:33:27 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-05-05 20:33:27 +0300
commit2a1cc6b172b589d64166c2350d85f512c648a2ca (patch)
treeb928ea224051cc4a2ae8f82a686afce30f1f49b0 /ext.c
parent323aec85713a8eb95290c3af806eb611c5d61798 (diff)
downloadgawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.tar.gz
Fix message for when extensions are not available.
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext.c b/ext.c
index c0ecd6bf..d0e97b87 100644
--- a/ext.c
+++ b/ext.c
@@ -229,7 +229,7 @@ get_actual_argument(NODE *t, int i, bool want_array)
void
load_ext(const char *lib_name)
{
- fatal(_("dynamic loading of library not supported"));
+ fatal(_("dynamic loading of libraries is not supported"));
}
#endif