[MPlayer-cvslog] CVS: main/libmpdemux cache2.c,1.32,1.33
Dominik Mierzejewski CVS
syncmail at mplayerhq.hu
Sat Jan 14 05:09:51 CET 2006
CVS change done by Dominik Mierzejewski CVS
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv31722
Modified Files:
cache2.c
Log Message:
1l - one cast too many
Index: cache2.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/cache2.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- cache2.c 12 Jan 2006 20:04:34 -0000 1.32
+++ cache2.c 14 Jan 2006 04:09:48 -0000 1.33
@@ -289,7 +289,7 @@
#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),
More information about the MPlayer-cvslog
mailing list