mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
fix warning (yes, I'm using -Werror now :)
Original commit message from CVS: fix warning (yes, I'm using -Werror now :)
This commit is contained in:
parent
ffd3b291fd
commit
a7ae86114a
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ gst_elementfactory_create (GstElementFactory *factory,
|
||||||
g_return_val_if_fail(factory != NULL, NULL);
|
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_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)))
|
if (!gst_plugin_feature_ensure_loaded (GST_PLUGIN_FEATURE (factory)))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue