mirror of https://github.com/mpv-player/mpv
Fix for:
dshow/mediatype.c:37: warning: suggest explicit braces to avoid ambiguous 'else' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24417 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a08444432e
commit
abb5ffc65d
|
@ -34,9 +34,9 @@ void DisplayMediaType(const char * label,const AM_MEDIA_TYPE* pmt){
|
|||
|
||||
|
||||
Debug mp_msg(MSGT_LOADER,MSGL_DBG4,"=======================\n");
|
||||
if(label)
|
||||
if(label){
|
||||
Debug mp_msg(MSGT_LOADER,MSGL_DBG4,"AM_MEDIA_TYPE: %s\n",label);
|
||||
else
|
||||
}else
|
||||
Debug mp_msg(MSGT_LOADER,MSGL_DBG4,"AM_MEDIA_TYPE:\n");
|
||||
Debug mp_msg(MSGT_LOADER,MSGL_DBG4,"-(Ptr:%p)--------\n",pmt);
|
||||
for(i=0;i<sizeof(AM_MEDIA_TYPE);i++){
|
||||
|
|
Loading…
Reference in New Issue