summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-14 04:09:48 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-14 04:09:48 +0000
commitfc716f9826e74e0796522155a045633fa5060203 (patch)
tree8d233cbac885e99f02a5b64796582a35d826a269 /libmpdemux
parent6a1a029fb5823093fb7b002bbcaf21303563e623 (diff)
downloadmpv-fc716f9826e74e0796522155a045633fa5060203.tar.bz2
mpv-fc716f9826e74e0796522155a045633fa5060203.tar.xz
1l - one cast too many
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17385 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/cache2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/cache2.c b/libmpdemux/cache2.c
index b2b8130b24..6b44598dd0 100644
--- a/libmpdemux/cache2.c
+++ b/libmpdemux/cache2.c
@@ -289,7 +289,7 @@ int stream_enable_cache(stream_t *stream,int size,int min,int seek_limit){
#endif
// wait until cache is filled at least prefill_init %
mp_msg(MSGT_CACHE,MSGL_V,"CACHE_PRE_INIT: %"PRId64" [%"PRId64"] %"PRId64" pre:%d eof:%d \n",
- (int64_t)s->min_filepos,(int64_t)s->read_filepos,(int64_t)s->max_filepos,min,(int64_t)s->eof);
+ (int64_t)s->min_filepos,(int64_t)s->read_filepos,(int64_t)s->max_filepos,min,s->eof);
while(s->read_filepos<s->min_filepos || s->max_filepos-s->read_filepos<min){
mp_msg(MSGT_CACHE,MSGL_STATUS,MSGTR_CacheFill,
100.0*(float)(s->max_filepos-s->read_filepos)/(float)(s->buffer_size),