gst/qtdemux/qtdemux.c: Fix warning (#161191).

Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
Fix warning (#161191).
This commit is contained in:
Ronald S. Bultje 2005-01-09 20:51:18 +00:00
parent eeeff5df84
commit 73fdfd3298
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
Fix warning (#161191).
2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
* ext/dvdread/stream_labels.c:

View file

@ -500,9 +500,8 @@ gst_qtdemux_handle_sink_event (GstQTDemux * qtdemux)
//gst_bytestream_flush_fast(qtdemux->bs, remaining);
break;
default:
res = FALSE;
g_warning ("unhandled event %d", type);
break;
gst_pad_event_default (qtdemux->sinkpad, event);
return TRUE;
}
gst_event_unref (event);