summaryrefslogtreecommitdiff
path: root/app/flatpak-builtins-info.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2018-07-07 18:20:27 +0200
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-08 10:05:37 +0000
commit3f4518b15c18a4b5775bb4d25ef9363807037b14 (patch)
tree60e851a5f1d1edc2153198eaa64feac587b58d8a /app/flatpak-builtins-info.c
parentc97b1d5202b6db6aa85c6ea2b043b53418b961c2 (diff)
downloadflatpak-3f4518b15c18a4b5775bb4d25ef9363807037b14.tar.gz
Run uncrustify
Closes: #1870 Approved by: alexlarsson
Diffstat (limited to 'app/flatpak-builtins-info.c')
-rw-r--r--app/flatpak-builtins-info.c94
1 files changed, 47 insertions, 47 deletions
diff --git a/app/flatpak-builtins-info.c b/app/flatpak-builtins-info.c
index 9a82e4dc..b59f9d91 100644
--- a/app/flatpak-builtins-info.c
+++ b/app/flatpak-builtins-info.c
@@ -80,7 +80,7 @@ maybe_print_space (gboolean *first)
}
static gchar *
-format_timestamp (guint64 timestamp)
+format_timestamp (guint64 timestamp)
{
GDateTime *dt;
gchar *str;
@@ -375,51 +375,51 @@ flatpak_builtin_info (int argc, char **argv, GCancellable *cancellable, GError *
if (opt_show_extensions)
{
- GList *extensions, *l;
-
- extensions = flatpak_list_extensions (metakey, parts[2], parts[3]);
- for (l = extensions; l; l = l->next)
- {
- FlatpakExtension *ext = l->data;
- g_autofree const char **subpaths = NULL;
- g_autoptr(GVariant) ext_deploy_data = NULL;
- g_autofree char *formatted = NULL;
-
- if (ext->is_unmaintained)
- {
- commit = "unmaintained";
- origin = NULL;
- size = 0;
- formatted = g_strdup ("unknown");
- subpaths = NULL;
- }
- else
- {
- ext_deploy_data = flatpak_dir_get_deploy_data (dir, ext->ref, cancellable, error);
- if (ext_deploy_data == NULL)
- return FALSE;
-
- commit = flatpak_deploy_data_get_commit (ext_deploy_data);
- origin = flatpak_deploy_data_get_origin (ext_deploy_data);
- size = flatpak_deploy_data_get_installed_size (ext_deploy_data);
- formatted = g_format_size (size);
- subpaths = flatpak_deploy_data_get_subpaths (ext_deploy_data);
- }
-
- g_print ("\n%s%s%s %s\n", on, _("Extension:"), off, ext->ref);
- g_print ("%s%s%s %s\n", on, _("ID:"), off, ext->id);
- g_print ("%s%s%s %s\n", on, _("Origin:"), off, origin ? origin : "-");
- g_print ("%s%s%s %s\n", on, _("Commit:"), off, commit);
- g_print ("%s%s%s %s%s\n", on, _("Installed size:"), off, subpaths && subpaths[0] ? "<" : "", formatted);
-
- if (subpaths && subpaths[0])
- {
- g_autofree char *subpath_str = NULL;
-
- subpath_str = g_strjoinv (",", (char **)subpaths);
- g_print ("%s%s%s %s\n", on, _("Subpaths:"), off, subpath_str);
- }
- }
+ GList *extensions, *l;
+
+ extensions = flatpak_list_extensions (metakey, parts[2], parts[3]);
+ for (l = extensions; l; l = l->next)
+ {
+ FlatpakExtension *ext = l->data;
+ g_autofree const char **subpaths = NULL;
+ g_autoptr(GVariant) ext_deploy_data = NULL;
+ g_autofree char *formatted = NULL;
+
+ if (ext->is_unmaintained)
+ {
+ commit = "unmaintained";
+ origin = NULL;
+ size = 0;
+ formatted = g_strdup ("unknown");
+ subpaths = NULL;
+ }
+ else
+ {
+ ext_deploy_data = flatpak_dir_get_deploy_data (dir, ext->ref, cancellable, error);
+ if (ext_deploy_data == NULL)
+ return FALSE;
+
+ commit = flatpak_deploy_data_get_commit (ext_deploy_data);
+ origin = flatpak_deploy_data_get_origin (ext_deploy_data);
+ size = flatpak_deploy_data_get_installed_size (ext_deploy_data);
+ formatted = g_format_size (size);
+ subpaths = flatpak_deploy_data_get_subpaths (ext_deploy_data);
+ }
+
+ g_print ("\n%s%s%s %s\n", on, _("Extension:"), off, ext->ref);
+ g_print ("%s%s%s %s\n", on, _("ID:"), off, ext->id);
+ g_print ("%s%s%s %s\n", on, _("Origin:"), off, origin ? origin : "-");
+ g_print ("%s%s%s %s\n", on, _("Commit:"), off, commit);
+ g_print ("%s%s%s %s%s\n", on, _("Installed size:"), off, subpaths && subpaths[0] ? "<" : "", formatted);
+
+ if (subpaths && subpaths[0])
+ {
+ g_autofree char *subpath_str = NULL;
+
+ subpath_str = g_strjoinv (",", (char **) subpaths);
+ g_print ("%s%s%s %s\n", on, _("Subpaths:"), off, subpath_str);
+ }
+ }
}
return TRUE;
@@ -436,7 +436,7 @@ flatpak_complete_info (FlatpakCompletion *completion)
context = g_option_context_new ("");
if (!flatpak_option_context_parse (context, options, &completion->argc, &completion->argv,
- FLATPAK_BUILTIN_FLAG_ALL_DIRS|FLATPAK_BUILTIN_FLAG_OPTIONAL_REPO, &dirs, NULL, NULL))
+ FLATPAK_BUILTIN_FLAG_ALL_DIRS | FLATPAK_BUILTIN_FLAG_OPTIONAL_REPO, &dirs, NULL, NULL))
return FALSE;
kinds = FLATPAK_KINDS_APP | FLATPAK_KINDS_RUNTIME;