]> git.draconx.ca Git - upkg.git/blobdiff - src/module.c
module: add missing return value to module_exit.
[upkg.git] / src / module.c
index eae9dc759709c9a40813f12c0179f0e9e1fa896c..bd22cfc0e0dd5fc9360f20d27b032f0d5606106b 100644 (file)
@@ -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)