From a7ae86114a752afbefd0beeadced64e5185ae140 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 4 Mar 2002 22:01:42 +0000 Subject: [PATCH] fix warning (yes, I'm using -Werror now :) Original commit message from CVS: fix warning (yes, I'm using -Werror now :) --- gst/gstelementfactory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstelementfactory.c b/gst/gstelementfactory.c index ac11f307bb..072dc2fcde 100644 --- a/gst/gstelementfactory.c +++ b/gst/gstelementfactory.c @@ -224,7 +224,7 @@ gst_elementfactory_create (GstElementFactory *factory, g_return_val_if_fail(factory != NULL, NULL); GST_DEBUG (GST_CAT_ELEMENTFACTORY,"creating element from factory \"%s\" with name \"%s\" and type %d\n", - GST_OBJECT_NAME (factory), name, factory->type); + GST_OBJECT_NAME (factory), name, (gint) factory->type); if (!gst_plugin_feature_ensure_loaded (GST_PLUGIN_FEATURE (factory))) return NULL;