diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2008-11-24 16:22:16 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-11-24 16:22:16 +0000 |
commit | 6087c1a763f19363789854525796e9e062043948 (patch) | |
tree | ae6150cff2fc6c99185fcf630dbc0c923e4359c9 /girepository/gdump.c | |
parent | 2a874a481728d61cb40953c0b92d1a404b8bf1d5 (diff) | |
download | gobject-introspection-6087c1a763f19363789854525796e9e062043948.tar.gz |
Remove a warning, be less verbose on error on fundamental types.
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
Diffstat (limited to 'girepository/gdump.c')
-rw-r--r-- | girepository/gdump.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/girepository/gdump.c b/girepository/gdump.c index 9c0c083d..23650bec 100644 --- a/girepository/gdump.c +++ b/girepository/gdump.c @@ -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; } } |