summaryrefslogtreecommitdiff
path: root/tests/seek_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/seek_test.c')
-rw-r--r--tests/seek_test.c2
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");
}