From 169416fd51654b847e03dc9632b615c7f0a85b2a Mon Sep 17 00:00:00 2001 From: reimar Date: Thu, 13 Oct 2005 18:33:56 +0000 Subject: 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 --- libmpdemux/cache2.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libmpdemux/cache2.c') 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; } -- cgit v1.2.3