girepository: Coding style fixes

Fixes commit 453dd4be9e.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2024-07-24 18:35:34 +02:00
parent 453dd4be9e
commit 10177cf3ea
No known key found for this signature in database
GPG Key ID: DCDF5885B1F3ED73
3 changed files with 16 additions and 13 deletions

View File

@ -843,7 +843,8 @@ gi_callable_info_class_init (gpointer g_class,
}
static GICallableInfo *
get_method_callable_info_for_index (GIBaseInfo *rinfo, unsigned int index)
get_method_callable_info_for_index (GIBaseInfo *rinfo,
unsigned int index)
{
GIBaseInfo *container = rinfo->container;

View File

@ -1225,20 +1225,22 @@ get_index_of_member_type (GIIrNodeInterface *node,
}
static int
get_index_for_function (GIIrTypelibBuild * build,
GIIrNode *parent,
get_index_for_function (GIIrTypelibBuild *build,
GIIrNode *parent,
const char *name)
{
if (parent == NULL)
{
uint16_t index = find_entry(build, name);
if (index == 0) return -1;
uint16_t index = find_entry (build, name);
if (index == 0)
return -1;
return index;
}
int index = get_index_of_member_type((GIIrNodeInterface *) parent, GI_IR_NODE_FUNCTION, name);
if (index != -1) return index;
int index = get_index_of_member_type ((GIIrNodeInterface *) parent, GI_IR_NODE_FUNCTION, name);
if (index != -1)
return index;
return -1;
}

View File

@ -461,9 +461,9 @@ write_callable_info (const char *ns,
Xml *file)
{
GITypeInfo *type;
GICallableInfo* async_func;
GICallableInfo* sync_func;
GICallableInfo* finish_func;
GICallableInfo *async_func;
GICallableInfo *sync_func;
GICallableInfo *finish_func;
if (gi_callable_info_can_throw_gerror (info))
xml_printf (file, " throws=\"1\"");
@ -476,13 +476,13 @@ write_callable_info (const char *ns,
finish_func = gi_callable_info_get_finish_function (info);
if (sync_func)
xml_printf (file, " glib:sync-func=\"%s\"", gi_base_info_get_name((GIBaseInfo*) sync_func));
xml_printf (file, " glib:sync-func=\"%s\"", gi_base_info_get_name ((GIBaseInfo*) sync_func));
if (finish_func)
xml_printf (file, " glib:finish-func=\"%s\"", gi_base_info_get_name((GIBaseInfo*) finish_func));
xml_printf (file, " glib:finish-func=\"%s\"", gi_base_info_get_name ((GIBaseInfo*) finish_func));
if (async_func)
xml_printf (file, " glib:async-func=\"%s\"", gi_base_info_get_name((GIBaseInfo*) async_func));
xml_printf (file, " glib:async-func=\"%s\"", gi_base_info_get_name ((GIBaseInfo*) async_func));
xml_start_element (file, "return-value");