From d8cb1e0d2c638b3f847d2582eec8d458cda2875d Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 24 Nov 2008 16:22:16 +0000 Subject: [PATCH] Remove a warning, be less verbose on error on fundamental types. 2008-11-24 Johan Dahlin * girepository/gdump.c (dump_type): Remove a warning, be less verbose on error on fundamental types. svn path=/trunk/; revision=963 --- gdump.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gdump.c b/gdump.c index 9c0c083d4..23650becd 100644 --- a/gdump.c +++ b/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; } }