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;