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
This commit is contained in:
Johan Dahlin 2008-11-24 16:22:16 +00:00 committed by Johan Dahlin
parent 52072b6bbf
commit d8cb1e0d2c

View File

@ -274,7 +274,11 @@ dump_type (GType type, const char *symbol, GOutputStream *out)
/* GValue, etc. Just skip them. */ /* GValue, etc. Just skip them. */
break; break;
default: 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;
} }
} }