Commit f74724b7 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix printf formating.

parent 3ebfe67c
...@@ -472,7 +472,7 @@ static int InitVideo (demux_t *demux, int fd) ...@@ -472,7 +472,7 @@ static int InitVideo (demux_t *demux, int fd)
sys->blocksize = fmt.fmt.pix.sizeimage; sys->blocksize = fmt.fmt.pix.sizeimage;
sys->bufv = NULL; sys->bufv = NULL;
entry = ReadThread; 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 else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment