[vlc-commits] Fix printf formating.

Rémi Duraffort git at videolan.org
Thu Jun 28 20:13:45 CEST 2012


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon May 21 21:42:01 2012 +0200| [f74724b7d614e2de47099b460a3c1cc5e3eac35a] | committer: Rémi Duraffort

Fix printf formating.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f74724b7d614e2de47099b460a3c1cc5e3eac35a
---

 modules/access/v4l2/demux.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/v4l2/demux.c b/modules/access/v4l2/demux.c
index 23e6e11..987ad00 100644
--- a/modules/access/v4l2/demux.c
+++ b/modules/access/v4l2/demux.c
@@ -472,7 +472,7 @@ static int InitVideo (demux_t *demux, int fd)
         sys->blocksize = fmt.fmt.pix.sizeimage;
         sys->bufv = NULL;
         entry = ReadThread;
-        msg_Dbg (demux, "reading %zu bytes at a time", sys->blocksize);
+        msg_Dbg (demux, "reading %"PRIu32" bytes at a time", sys->blocksize);
     }
     else
     {



More information about the vlc-commits mailing list