summaryrefslogtreecommitdiff
path: root/src/ostree/ot-admin-builtin-os-init.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2022-06-14 09:50:07 -0400
committerColin Walters <walters@verbum.org>2022-06-14 09:50:07 -0400
commit46e1db392d59e6956d705037feaf6c64b8a15a16 (patch)
tree9c43d31158ee263ca6a93bc5f9f4472b73331ded /src/ostree/ot-admin-builtin-os-init.c
parente65c8e72c82a62b2068ed902edcc06ac71fbbaf8 (diff)
downloadostree-46e1db392d59e6956d705037feaf6c64b8a15a16.tar.gz
cli/os-init: Port to C99 style
General background cleanup; motivated by a recent PR which was using pre-C99 code as a base.
Diffstat (limited to 'src/ostree/ot-admin-builtin-os-init.c')
-rw-r--r--src/ostree/ot-admin-builtin-os-init.c22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/ostree/ot-admin-builtin-os-init.c b/src/ostree/ot-admin-builtin-os-init.c
index cb1ec66d..05311532 100644
--- a/src/ostree/ot-admin-builtin-os-init.c
+++ b/src/ostree/ot-admin-builtin-os-init.c
@@ -35,35 +35,29 @@ static GOptionEntry options[] = {
gboolean
ot_admin_builtin_os_init (int argc, char **argv, OstreeCommandInvocation *invocation, GCancellable *cancellable, GError **error)
{
- g_autoptr(GOptionContext) context = NULL;
- g_autoptr(OstreeSysroot) sysroot = NULL;
- gboolean ret = FALSE;
- const char *osname = NULL;
-
- context = g_option_context_new ("OSNAME");
+ g_autoptr(GOptionContext) context = g_option_context_new ("OSNAME");
+ g_autoptr(OstreeSysroot) sysroot = NULL;
if (!ostree_admin_option_context_parse (context, options, &argc, &argv,
OSTREE_ADMIN_BUILTIN_FLAG_SUPERUSER | OSTREE_ADMIN_BUILTIN_FLAG_UNLOCKED,
invocation, &sysroot, cancellable, error))
- goto out;
+ return FALSE;
if (!ostree_sysroot_ensure_initialized (sysroot, cancellable, error))
- goto out;
+ return FALSE;
if (argc < 2)
{
ot_util_usage_error (context, "OSNAME must be specified", error);
- goto out;
+ return FALSE;
}
- osname = argv[1];
+ const char *osname = argv[1];
if (!ostree_sysroot_init_osname (sysroot, osname, cancellable, error))
- goto out;
+ return FALSE;
g_print ("ostree/deploy/%s initialized as OSTree root\n", osname);
- ret = TRUE;
- out:
- return ret;
+ return TRUE;
}