diff mplayer.c @ 13684:af465f23bd1d

10l, patch by Jan Knutar <jknutar@nic.fi>
author faust3
date Mon, 18 Oct 2004 21:16:45 +0000
parents 741649fe31cb
children d7af73cc38da
line wrap: on
line diff
--- a/mplayer.c	Mon Oct 18 21:09:43 2004 +0000
+++ b/mplayer.c	Mon Oct 18 21:16:45 2004 +0000
@@ -1952,14 +1952,14 @@
 
 if(!sh_audio){
   mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
-  mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %s unused audio chunks.\n",d_audio->packs);
+  mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",d_audio->packs);
   ds_free_packs(d_audio); // free buffered chunks
   d_audio->id=-2;         // do not read audio chunks
   //uninit_player(INITED_AO); // close device
 }
 if(!sh_video){
    mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
-   mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %s unused video chunks.\n",d_video->packs);
+   mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",d_video->packs);
    ds_free_packs(d_video);
    d_video->id=-2;
    //if(!fixed_vo) uninit_player(INITED_VO);