X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/4cac9f15932adee255ed2be1f6d419ffe068c438..71adb9bfdbddaa51139bcc4ee9822aff816e8fce:/src/upkg.c diff --git a/src/upkg.c b/src/upkg.c index 4e524ef..c8d2469 100644 --- a/src/upkg.c +++ b/src/upkg.c @@ -202,7 +202,7 @@ int package_export(struct upkg *pkg) return EXIT_FAILURE; } - type = module_get_class(package, class); + type = uobject_module_get_class(package, class); if (!type) continue; obj = g_object_new(type, NULL); @@ -253,7 +253,7 @@ int main(int argc, char **argv) return EXIT_FAILURE; } - if (module_init() != 0) + if (uobject_module_init() != 0) return EXIT_FAILURE; pkg = upkg_fopen(argv[optind]); @@ -272,6 +272,6 @@ int main(int argc, char **argv) } upkg_close(pkg); - module_exit(); + uobject_module_exit(); return rc; }