From 97379e8f4934ac0c11be7952a36db63b29b48cf7 Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 26 Aug 2011 00:13:16 +0200 Subject: [PATCH] stepping: use the proper argument order Fixes warning #188: enumerated type mixed with another type reported by ICC. --- tests/examples/stepping/framestep1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/examples/stepping/framestep1.c b/tests/examples/stepping/framestep1.c index f33532bdac..eb248b6bd8 100644 --- a/tests/examples/stepping/framestep1.c +++ b/tests/examples/stepping/framestep1.c @@ -11,7 +11,7 @@ event_loop (GstElement * pipe) bus = gst_element_get_bus (GST_ELEMENT (pipe)); while (running) { - message = gst_bus_timed_pop_filtered (bus, GST_MESSAGE_ANY, -1); + message = gst_bus_timed_pop_filtered (bus, -1, GST_MESSAGE_ANY); g_assert (message != NULL);