mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-02 10:13:51 +00:00
stepping: use the proper argument order
Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
parent
0b31cb5d73
commit
97379e8f49
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ event_loop (GstElement * pipe)
|
||||||
bus = gst_element_get_bus (GST_ELEMENT (pipe));
|
bus = gst_element_get_bus (GST_ELEMENT (pipe));
|
||||||
|
|
||||||
while (running) {
|
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);
|
g_assert (message != NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue