From f62d7c1e2a38006a6ad1d735135f222ce5ceb726 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 5 Jul 2018 11:19:20 +0100 Subject: [PATCH] gresource: Fix wrapping of function return type This introduces no functional changes. Signed-off-by: Philip Withnall --- gio/gresource.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gio/gresource.c b/gio/gresource.c index 8ead26bc6..18383d9b6 100644 --- a/gio/gresource.c +++ b/gio/gresource.c @@ -591,15 +591,15 @@ g_resource_load (const gchar *filename, return g_resource_new_from_table (table); } -static -gboolean do_lookup (GResource *resource, - const gchar *path, - GResourceLookupFlags lookup_flags, - gsize *size, - guint32 *flags, - const void **data, - gsize *data_size, - GError **error) +static gboolean +do_lookup (GResource *resource, + const gchar *path, + GResourceLookupFlags lookup_flags, + gsize *size, + guint32 *flags, + const void **data, + gsize *data_size, + GError **error) { char *free_path = NULL; gsize path_len;