X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/71adb9bfdbddaa51139bcc4ee9822aff816e8fce..0438ce1525f7c1e722140c046fccb0f686b4cab2:/src/upkg.c diff --git a/src/upkg.c b/src/upkg.c index c8d2469..a8c7c7e 100644 --- a/src/upkg.c +++ b/src/upkg.c @@ -202,7 +202,7 @@ int package_export(struct upkg *pkg) return EXIT_FAILURE; } - type = uobject_module_get_class(package, class); + type = u_object_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 (uobject_module_init() != 0) + if (u_object_module_init() != 0) return EXIT_FAILURE; pkg = upkg_fopen(argv[optind]); @@ -272,6 +272,6 @@ int main(int argc, char **argv) } upkg_close(pkg); - uobject_module_exit(); + u_object_module_exit(); return rc; }