mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 10:10:32 +00:00
tests: audiodecoder: fix another c99-ism
Missed one.
This commit is contained in:
parent
bbed5a5ffc
commit
927e657640
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ _audiodecoder_flush_events (gboolean send_buffers)
|
|||
gst_event_unref (segment_event);
|
||||
}
|
||||
|
||||
for (int i = 0; i < NUM_BUFFERS / 10; i++) {
|
||||
for (i = 0; i < NUM_BUFFERS / 10; i++) {
|
||||
GstEvent *tag_event = gst_harness_pull_event (h);
|
||||
fail_unless (GST_EVENT_TYPE (tag_event) == GST_EVENT_TAG);
|
||||
gst_event_unref (tag_event);
|
||||
|
|
Loading…
Reference in a new issue