From: Josep Torra Date: Tue, 9 Aug 2011 21:26:13 +0000 (+0200) Subject: debugutils: use GST_STATE_VOID_PENDING for GstState instead of 0 X-Git-Tag: RELEASE-0.10.36~219 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b30b78c505e3543ad2dccee0e09a394beca8d98c;p=platform%2Fupstream%2Fgstreamer.git 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 --- 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) {