From a0e3174c886eb51716769ee5fe062d7e180cf680 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 14 Oct 2008 11:13:59 +0000 Subject: [PATCH] ext/theora/theoradec.c: Fix build on macosx. Original commit message from CVS: * ext/theora/theoradec.c: (theora_dec_decode_buffer): Fix build on macosx. --- ChangeLog | 5 +++++ ext/theora/theoradec.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ed245c1..c2817d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-14 Edward Hervey + + * ext/theora/theoradec.c: (theora_dec_decode_buffer): + Fix build on macosx. + 2008-10-13 Wim Taymans Based on patch by: Robin Stocker diff --git a/ext/theora/theoradec.c b/ext/theora/theoradec.c index 6db9273..787be0a 100644 --- a/ext/theora/theoradec.c +++ b/ext/theora/theoradec.c @@ -1266,7 +1266,7 @@ theora_dec_decode_buffer (GstTheoraDec * dec, GstBuffer * buf) /* EOS does not matter for the decoder */ packet.e_o_s = 0; - GST_LOG_OBJECT (dec, "decode buffer of size %u", packet.bytes); + GST_LOG_OBJECT (dec, "decode buffer of size %ld", packet.bytes); if (dec->have_header) { if (packet.granulepos != -1) { -- 2.7.4