summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authormplayer-svn <svn@mplayerhq.hu>2011-10-20 14:42:14 +0000
committerwm4 <wm4@nowhere>2012-08-03 01:31:00 +0200
commit76ce3b7d6ef27a7289fa3fa1aa0e456a63a18e61 (patch)
tree6ffa348aacd1eff7cda9967e773b696cf8868113 /stream/stream.h
parent78f51230d7b4cd131dcc57c8b1e49a91d2fb2109 (diff)
downloadmpv-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/stream.h')
-rw-r--r--stream/stream.h2
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",