plugins/elements/gstfdsrc.c: Another printf fix (#371493).

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).
This commit is contained in:
Peter Kjellerstedt 2006-11-06 17:25:01 +00:00 committed by Tim-Philipp Müller
parent 234221776e
commit f2d78a7a87
2 changed files with 8 additions and 1 deletions

View file

@ -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:

View 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;