From f2d78a7a87fe1748118078fc31b5be807df944b5 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Mon, 6 Nov 2006 17:25:01 +0000 Subject: [PATCH] plugins/elements/gstfdsrc.c: Another printf fix (#371493). Original commit message from CVS: Patch by: Peter Kjellerstedt * plugins/elements/gstfdsrc.c: (gst_fd_src_create): Another printf fix (#371493). --- ChangeLog | 7 +++++++ plugins/elements/gstfdsrc.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bc936332f5..d4a1dd7e07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-11-06 Tim-Philipp Müller + + Patch by: Peter Kjellerstedt + + * plugins/elements/gstfdsrc.c: (gst_fd_src_create): + Another printf fix (#371493). + 2006-11-06 Stefan Kost * tests/check/gst/gsttag.c: diff --git a/plugins/elements/gstfdsrc.c b/plugins/elements/gstfdsrc.c index fb28c779fb..39615551e7 100644 --- a/plugins/elements/gstfdsrc.c +++ b/plugins/elements/gstfdsrc.c @@ -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;