summaryrefslogtreecommitdiffstats
path: root/libmpdemux/cache2.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-13 18:33:56 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-13 18:33:56 +0000
commit169416fd51654b847e03dc9632b615c7f0a85b2a (patch)
tree8cefffb8b02dc50b41ed7927fe840658e767b549 /libmpdemux/cache2.c
parent619b57225d4bc137ee2ab6cd2b78e198c3a4b9fa (diff)
downloadmpv-169416fd51654b847e03dc9632b615c7f0a85b2a.tar.bz2
mpv-169416fd51654b847e03dc9632b615c7f0a85b2a.tar.xz
Use PRI?64 defines as format strings for 64 bit variables.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16751 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/cache2.c')
-rw-r--r--libmpdemux/cache2.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libmpdemux/cache2.c b/libmpdemux/cache2.c
index a499c016b8..d0822b1205 100644
--- a/libmpdemux/cache2.c
+++ b/libmpdemux/cache2.c
@@ -362,11 +362,7 @@ int cache_stream_seek_long(stream_t *stream,off_t pos){
// stream->buf_pos=stream->buf_len=0;
// return 1;
-#ifdef _LARGEFILE_SOURCE
- mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%llX !\n",(long long)(pos+newpos));
-#else
- mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%X !\n",(pos+newpos));
-#endif
+ mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%"PRIX64" !\n",(int64_t)(pos+newpos));
return 0;
}