From 81286de66f02eb6ef465da4ee28bb228491a293f Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 30 May 2006 16:04:14 +0000 Subject: [PATCH] ext/ogg/gstoggdemux.c: Fix build again. Original commit message from CVS: * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream): Fix build again. --- ChangeLog | 5 +++++ ext/ogg/gstoggdemux.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c25c0e941e..f711f737b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-05-30 Wim Taymans + + * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream): + Fix build again. + 2006-05-30 Thomas Vander Stichele * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind), diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index 7a1c98424c..bbb987e2b7 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -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;