[MPlayer-cvslog] CVS: main/libmpdemux demux_real.c,1.83,1.84

Roberto Togni CVS syncmail at mplayerhq.hu
Sat Jan 14 20:24:57 CET 2006


CVS change done by Roberto Togni CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv12660

Modified Files:
	demux_real.c 
Log Message:
Fix printing of audio fourcc in hex format
Add explicit cast to fourcc print


Index: demux_real.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_real.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- demux_real.c	14 Jan 2006 16:57:52 -0000	1.83
+++ demux_real.c	14 Jan 2006 19:24:55 -0000	1.84
@@ -1799,7 +1799,7 @@
     if(demuxer->audio->sh){
 	sh_audio_t *sh=demuxer->audio->sh;
 	mp_msg(MSGT_DEMUX,MSGL_V,"AUDIO:  %.4s [%08X]\n",
-	    &sh->format,&sh->format);
+	    (char *)&sh->format,sh->format);
     }
 
     return demuxer;




More information about the MPlayer-cvslog mailing list