aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext.c b/ext.c
index 911754bf..0b87def9 100644
--- a/ext.c
+++ b/ext.c
@@ -69,9 +69,9 @@ load_ext(const char *lib_name)
if (install_func(& api_impl, NULL /* ext_id */) == 0) {
warning(_("load_ext: library `%s' initialization routine `%s' failed\n"),
lib_name, INIT_FUNC);
- return make_number(-1);
+ return;
}
- return make_number(0);
+ return;
}