diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-07 11:11:16 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-07 11:11:16 +0300 |
commit | 2c61707777c631d919dd03b8da378145dc3ecf99 (patch) | |
tree | b5adba206e6276dce82cbdd83b8efc4aa53c3676 /ext.c | |
parent | e04cfd3ebacb887e789ee73b342125602ea21b99 (diff) | |
parent | bd270ca4676197614da0d7b5d793c9c8b7cd333b (diff) | |
download | egawk-2c61707777c631d919dd03b8da378145dc3ecf99.tar.gz egawk-2c61707777c631d919dd03b8da378145dc3ecf99.tar.bz2 egawk-2c61707777c631d919dd03b8da378145dc3ecf99.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -57,23 +57,23 @@ load_ext(const char *lib_name) fatal(_("load_ext: received NULL lib_name")); if ((dl = dlopen(lib_name, flags)) == NULL) - fatal(_("load_ext: cannot open library `%s' (%s)\n"), lib_name, + fatal(_("load_ext: cannot open library `%s' (%s)"), lib_name, dlerror()); /* Per the GNU Coding standards */ gpl_compat = (int *) dlsym(dl, "plugin_is_GPL_compatible"); if (gpl_compat == NULL) - fatal(_("load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"), + fatal(_("load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)"), lib_name, dlerror()); install_func = (int (*)(const gawk_api_t *const, awk_ext_id_t)) dlsym(dl, INIT_FUNC); if (install_func == NULL) - fatal(_("load_ext: library `%s': cannot call function `%s' (%s)\n"), + fatal(_("load_ext: library `%s': cannot call function `%s' (%s)"), lib_name, INIT_FUNC, dlerror()); if (install_func(& api_impl, NULL /* ext_id */) == 0) - warning(_("load_ext: library `%s' initialization routine `%s' failed\n"), + warning(_("load_ext: library `%s' initialization routine `%s' failed"), lib_name, INIT_FUNC); } |