1
mirror of https://github.com/mpv-player/mpv synced 2024-10-18 10:25:02 +02:00

Fix printing of audio fourcc in hex format

Add explicit cast to fourcc print


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17392 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtognimp 2006-01-14 19:24:55 +00:00
parent 77ff2b9f85
commit 7598f44833

View File

@ -1799,7 +1799,7 @@ header_end:
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;