changeset 17391:64924488f301

Fix printing of audio fourcc in hex format Add explicit cast to fourcc print
author rtognimp
date Sat, 14 Jan 2006 19:24:55 +0000
parents b2b1cbcef6ce
children 34b2cc92657a
files libmpdemux/demux_real.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/demux_real.c	Sat Jan 14 18:59:45 2006 +0000
+++ b/libmpdemux/demux_real.c	Sat Jan 14 19:24:55 2006 +0000
@@ -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;