mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
ext/ogg/gstoggdemux.c: Fix build again.
Original commit message from CVS: * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream): Fix build again.
This commit is contained in:
parent
83675f78ec
commit
81286de66f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-30 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
|
||||
Fix build again.
|
||||
|
||||
2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
|
||||
|
|
|
@ -1270,7 +1270,7 @@ gst_ogg_chain_new_stream (GstOggChain * chain, glong serialno)
|
|||
gst_object_sink (GST_OBJECT (ret));
|
||||
|
||||
list = gst_tag_list_new ();
|
||||
name = g_strdup_printf ("serial_%08x", serialno);
|
||||
name = g_strdup_printf ("serial_%08lx", serialno);
|
||||
|
||||
GST_PAD_DIRECTION (ret) = GST_PAD_SRC;
|
||||
ret->chain = chain;
|
||||
|
|
Loading…
Reference in a new issue