gresource: Fix wrapping of function return type

This introduces no functional changes.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2018-07-05 11:19:20 +01:00
parent 2a1404ac21
commit f62d7c1e2a

View File

@ -591,15 +591,15 @@ g_resource_load (const gchar *filename,
return g_resource_new_from_table (table); return g_resource_new_from_table (table);
} }
static static gboolean
gboolean do_lookup (GResource *resource, do_lookup (GResource *resource,
const gchar *path, const gchar *path,
GResourceLookupFlags lookup_flags, GResourceLookupFlags lookup_flags,
gsize *size, gsize *size,
guint32 *flags, guint32 *flags,
const void **data, const void **data,
gsize *data_size, gsize *data_size,
GError **error) GError **error)
{ {
char *free_path = NULL; char *free_path = NULL;
gsize path_len; gsize path_len;