plugins/elements/gstfdsrc.c: Another printf fix (#371493).
authorPeter Kjellerstedt <pkj@axis.com>
Mon, 6 Nov 2006 17:25:01 +0000 (17:25 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Mon, 6 Nov 2006 17:25:01 +0000 (17:25 +0000)
Original commit message from CVS:
Patch by: Peter Kjellerstedt <pkj at axis com>
* plugins/elements/gstfdsrc.c: (gst_fd_src_create):
Another printf fix (#371493).

ChangeLog
plugins/elements/gstfdsrc.c

index bc93633..d4a1dd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
+
+       Patch by: Peter Kjellerstedt <pkj at axis com>
+
+       * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
+         Another printf fix (#371493).
+
 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
 
        * tests/check/gst/gsttag.c:
index fb28c77..3961555 100644 (file)
@@ -383,7 +383,7 @@ gst_fd_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
   GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE;
   src->curoffset += readbytes;
 
-  GST_LOG_OBJECT (psrc, "Read buffer of size %ld", readbytes);
+  GST_LOG_OBJECT (psrc, "Read buffer of size %" G_GSSIZE_FORMAT, readbytes);
 
   /* we're done, return the buffer */
   *outbuf = buf;