summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 79d77624..51f9a336 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-05-05 Arnold D. Robbins <arnold@skeeve.com>
+
+ * ext.c (load_ext): Fix the message in the version for when
+ extensions are not available.
+
2019-04-24 Arnold D. Robbins <arnold@skeeve.com>
* msg.c (msg): Use %ld for the line number value. Thanks to
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