ext/theora/theoradec.c: Fix build on macosx.
authorEdward Hervey <bilboed@bilboed.com>
Tue, 14 Oct 2008 11:13:59 +0000 (11:13 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Tue, 14 Oct 2008 11:13:59 +0000 (11:13 +0000)
Original commit message from CVS:
* ext/theora/theoradec.c: (theora_dec_decode_buffer):
Fix build on macosx.

ChangeLog
ext/theora/theoradec.c

index ed245c1..c2817d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
+
+       * ext/theora/theoradec.c: (theora_dec_decode_buffer):
+       Fix build on macosx.
+
 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
 
        Based on patch by: Robin Stocker <robin at nibor dot org>
index 6db9273..787be0a 100644 (file)
@@ -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) {