aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/ext.c b/ext.c
index 0b87def9..14d55c5f 100644
--- a/ext.c
+++ b/ext.c
@@ -66,12 +66,9 @@ load_ext(const char *lib_name)
fatal(_("load_ext: library `%s': cannot call function `%s' (%s)\n"),
lib_name, INIT_FUNC, dlerror());
- if (install_func(& api_impl, NULL /* ext_id */) == 0) {
+ if (install_func(& api_impl, NULL /* ext_id */) == 0)
warning(_("load_ext: library `%s' initialization routine `%s' failed\n"),
lib_name, INIT_FUNC);
- return;
- }
- return;
}