From: Nick Bowler Date: Sun, 12 Jul 2009 23:47:14 +0000 (-0400) Subject: module: add missing return value to module_exit. X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/commitdiff_plain/b46bbe4f64a68fdec38675690f9576c2cbdf4cd3 module: add missing return value to module_exit. --- diff --git a/src/module.c b/src/module.c index eae9dc7..bd22cfc 100644 --- a/src/module.c +++ b/src/module.c @@ -137,6 +137,8 @@ int module_exit(void) dl_print_errors(__func__); return -1; } + + return 0; } GType module_get_class(const char *package, const char *class)