From b30b78c505e3543ad2dccee0e09a394beca8d98c Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Tue, 9 Aug 2011 23:26:13 +0200 Subject: [PATCH] debugutils: use GST_STATE_VOID_PENDING for GstState instead of 0 Fixes a warning reported by ICC. https://bugzilla.gnome.org/show_bug.cgi?id=656265 --- gst/gstdebugutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstdebugutils.c b/gst/gstdebugutils.c index f83ccf0..a552cc0 100644 --- a/gst/gstdebugutils.c +++ b/gst/gstdebugutils.c @@ -77,7 +77,7 @@ debug_dump_get_element_state (GstElement * element) { gchar *state_name = NULL; const gchar *state_icons = "~0-=>"; - GstState state = 0, pending = 0; + GstState state = GST_STATE_VOID_PENDING, pending = GST_STATE_VOID_PENDING; gst_element_get_state (element, &state, &pending, 0); if (pending == GST_STATE_VOID_PENDING) { -- 2.7.4