diff options
author | mplayer-svn <svn@mplayerhq.hu> | 2011-10-20 14:42:14 +0000 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-08-03 01:31:00 +0200 |
commit | 76ce3b7d6ef27a7289fa3fa1aa0e456a63a18e61 (patch) | |
tree | 6ffa348aacd1eff7cda9967e773b696cf8868113 /stream | |
parent | 78f51230d7b4cd131dcc57c8b1e49a91d2fb2109 (diff) | |
download | mpv-76ce3b7d6ef27a7289fa3fa1aa0e456a63a18e61.tar.bz2 mpv-76ce3b7d6ef27a7289fa3fa1aa0e456a63a18e61.tar.xz |
Replace 'q' printf length modifier by 'll'
'q' is just a deprecated synonym of 'll' that should no longer be used.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34224 b3059339-0415-0410-9bf9-f77b7e298cf2
Author: diego
Diffstat (limited to 'stream')
-rw-r--r-- | stream/stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream.h b/stream/stream.h index 0c17f02389..81bfcf0386 100644 --- a/stream/stream.h +++ b/stream/stream.h @@ -294,7 +294,7 @@ inline static off_t stream_tell(stream_t *s){ inline static int stream_seek(stream_t *s,off_t pos){ - mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)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 %llx!\n", |