Remove a warning, be less verbose on error on fundamental types.
authorJohan Dahlin <jdahlin@async.com.br>
Mon, 24 Nov 2008 16:22:16 +0000 (16:22 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Mon, 24 Nov 2008 16:22:16 +0000 (16:22 +0000)
2008-11-24  Johan Dahlin  <jdahlin@async.com.br>

* girepository/gdump.c (dump_type): Remove a warning,
be less verbose on error on fundamental types.

svn path=/trunk/; revision=963

ChangeLog
girepository/gdump.c

index 55299ff..ca93f70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-24  Johan Dahlin  <jdahlin@async.com.br>
+
+       * girepository/gdump.c (dump_type): Remove a warning,
+       be less verbose on error on fundamental types.
+
 2008-11-23  Johan Dahlin  <jdahlin@async.com.br>
 
        * giscanner/dumper.py: Add license headers,
@@ -5,7 +10,7 @@
        extra pedantic checks.
 
 2008-11-23  Johan Dahlin  <jdahlin@async.com.br>
-       
+
        Make it compilable with -Werror on my system by adding
        a couple of prototypes and including headers.
 
index 9c0c083..23650be 100644 (file)
@@ -274,7 +274,11 @@ dump_type (GType type, const char *symbol, GOutputStream *out)
       /* GValue, etc.  Just skip them. */
       break;
     default:
-      g_warning ("unhandled gtype %s", g_type_name (type));
+      /* Other fundamental types such as the once GStreamer and Clutter registers
+       * are not yet interesting from an introspection perspective and should be
+       * ignored
+       */
+      break;
     }
 }