diff options
author | David Conrad <lessen42@gmail.com> | 2007-08-13 05:18:14 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2007-08-13 05:18:14 +0000 |
commit | 99e8b22dc56f5d850ac4142388dce029f7761ff3 (patch) | |
tree | 40fd7071d125618d5d9ef0a896c872f502554aa0 /tests | |
parent | 40802d36bc5bb023c1cca9cc0901338eff7c24a2 (diff) | |
download | ffmpeg-99e8b22dc56f5d850ac4142388dce029f7761ff3.tar.gz |
Use PRId64 in seek test
Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rw-r--r-- | tests/seek_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |