# HG changeset patch # User reimar # Date 1266664911 0 # Node ID d6f2e0515ad3a5ae1f60e45d916aeb56693f89d4 # Parent 2fa6d8411b072fa563592c744c4f4ea455b98a28 Print all 64 bits of seek position. diff -r 2fa6d8411b07 -r d6f2e0515ad3 libmpdemux/demux_lavf.c --- a/libmpdemux/demux_lavf.c Sat Feb 20 11:13:01 2010 +0000 +++ b/libmpdemux/demux_lavf.c Sat Feb 20 11:21:51 2010 +0000 @@ -96,7 +96,7 @@ static int64_t mp_seek(void *opaque, int64_t pos, int whence) { stream_t *stream = opaque; int64_t current_pos; - mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %d, %d)\n", stream, (int)pos, whence); + mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %"PRId64", %d)\n", stream, pos, whence); if(whence == SEEK_CUR) pos +=stream_tell(stream); else if(whence == SEEK_END && stream->end_pos > 0)