[vlc-commits] test:demux-run: use %PRIuMAX instead of %ju
Steve Lhomme
git at videolan.org
Wed Jul 11 09:32:02 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 09:30:12 2018 +0200| [19b2429265767146a17f0c909344aeb3b0fe56f6] | committer: Steve Lhomme
test:demux-run: use %PRIuMAX instead of %ju
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=19b2429265767146a17f0c909344aeb3b0fe56f6
---
test/src/input/demux-run.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/src/input/demux-run.c b/test/src/input/demux-run.c
index f00da77e70..1e8d2f733e 100644
--- a/test/src/input/demux-run.c
+++ b/test/src/input/demux-run.c
@@ -329,7 +329,7 @@ static int demux_process_stream(const struct vlc_run_args *args, stream_t *s)
demux_Delete(demux);
es_out_Delete(out);
- debug("Completed with %ju iteration(s).\n", i);
+ debug("Completed with %" PRIuMAX " iteration(s).\n", i);
return val == VLC_DEMUXER_EOF ? 0 : -1;
}
More information about the vlc-commits
mailing list