Mercurial > mplayer.hg
changeset 34140:a08f68ee111e
Fix compilation: Partly revert r34227.
author | cehoyos |
---|---|
date | Fri, 21 Oct 2011 08:49:48 +0000 |
parents | cc8dfde2b6c5 |
children | bb7288560eff |
files | stream/stream.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/stream.h Thu Oct 20 21:49:30 2011 +0000 +++ b/stream/stream.h Fri Oct 21 08:49:48 2011 +0000 @@ -294,11 +294,11 @@ inline static int stream_seek(stream_t *s,off_t pos){ - mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%"PRIu64"X\n", pos); + mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%llX\n", (long long)pos); if (pos < 0) { - mp_msg(MSGT_DEMUX, MSGL_ERR, - "Invalid seek to negative position %"PRIu64"x!\n", pos); + mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid seek to negative position %llx!\n", + (long long)pos); pos = 0; } if(pos<s->pos){