stepping: use the proper argument order

Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
Josep Torra 2011-08-26 00:13:16 +02:00
parent 0b31cb5d73
commit 97379e8f49

View file

@ -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);