1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-04-22 23:29:16 +02:00

Fix indentation

svn path=/trunk/; revision=618
This commit is contained in:
Colin Walters 2008-09-19 18:54:50 +00:00 committed by Philip Withnall
parent 4ae9d0f2fa
commit ff45096d96

@ -92,12 +92,14 @@ write_type_info (const gchar *namespace,
tag = g_type_info_get_tag (info); tag = g_type_info_get_tag (info);
is_pointer = g_type_info_is_pointer (info); is_pointer = g_type_info_is_pointer (info);
if (tag == GI_TYPE_TAG_VOID) { if (tag == GI_TYPE_TAG_VOID)
{
if (is_pointer) if (is_pointer)
g_fprintf (file, "%s", "any"); g_fprintf (file, "%s", "any");
else else
g_fprintf (file, "%s", "none"); g_fprintf (file, "%s", "none");
} else if (tag < 20) }
else if (tag < 20)
g_fprintf (file, "%s", basic[tag]); g_fprintf (file, "%s", basic[tag]);
else if (tag == 20) else if (tag == 20)
{ {