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:
voroshil 2007-09-10 14:43:19 +00:00
parent a08444432e
commit abb5ffc65d
1 changed files with 2 additions and 2 deletions

View File

@ -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++){