Small format fixes.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11468 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
mosu 2003-11-15 22:46:47 +00:00
parent fb744fcef8
commit 76264802b3
1 changed files with 2 additions and 2 deletions

View File

@ -478,7 +478,7 @@ void demux_ogg_build_syncpoints_table(demuxer_t* demuxer) {
while(1) {
np = ogg_sync_pageseek(sync,page);
if(np < 0) { // We had to skip some bytes
mp_msg(MSGT_DEMUX,MSGL_ERR,"Bad page sync while building syncpoints table (%ld)\n",-np);
mp_msg(MSGT_DEMUX,MSGL_ERR,"Bad page sync while building syncpoints table (%d)\n",-np);
pos += -np;
continue;
}
@ -517,7 +517,7 @@ void demux_ogg_build_syncpoints_table(demuxer_t* demuxer) {
if(p > 1 || (p == 1 && ! ogg_page_continued(page)))
last_pos = pos;
pos += np;
mp_msg(MSGT_DEMUX,MSGL_INFO,"Building syncpoint table %d%\r",pos*100/s->end_pos);
mp_msg(MSGT_DEMUX,MSGL_INFO,"Building syncpoint table %d%%\r",(int)(pos*100/s->end_pos));
}
mp_msg(MSGT_DEMUX,MSGL_INFO,"\n");