gobject-introspection r618 - trunk/tools



Author: walters
Date: Fri Sep 19 18:54:50 2008
New Revision: 618
URL: http://svn.gnome.org/viewvc/gobject-introspection?rev=618&view=rev

Log:
Fix indentation


Modified:
   trunk/tools/generate.c

Modified: trunk/tools/generate.c
==============================================================================
--- trunk/tools/generate.c	(original)
+++ trunk/tools/generate.c	Fri Sep 19 18:54:50 2008
@@ -92,12 +92,14 @@
   tag = g_type_info_get_tag (info);
   is_pointer = g_type_info_is_pointer (info);
 
-  if (tag == GI_TYPE_TAG_VOID) {
-    if (is_pointer)
-      g_fprintf (file, "%s", "any");
-    else
-      g_fprintf (file, "%s", "none");
-  } else if (tag < 20)
+  if (tag == GI_TYPE_TAG_VOID) 
+    {
+      if (is_pointer)
+	g_fprintf (file, "%s", "any");
+      else
+	g_fprintf (file, "%s", "none");
+    } 
+  else if (tag < 20)
     g_fprintf (file, "%s", basic[tag]);
   else if (tag == 20)
     {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]