From 99e8b22dc56f5d850ac4142388dce029f7761ff3 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Mon, 13 Aug 2007 05:18:14 +0000 Subject: Use PRId64 in seek test Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/seek_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/seek_test.c b/tests/seek_test.c index 025268549f..2ab71612a7 100644 --- a/tests/seek_test.c +++ b/tests/seek_test.c @@ -72,7 +72,7 @@ int main(int argc, char **argv) printf("ret:%2d", ret); if(ret>=0){ st= ic->streams[pkt.stream_index]; - printf(" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags); + printf(" st:%2d dts:%f pts:%f pos:%" PRId64 " size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags); } printf("\n"); } -- cgit v1.2.3