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
3 changed files with 16 additions and 13 deletions

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;
}