bad debug printf caused sig11 with divx audio

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4546 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-02-05 23:50:40 +00:00
parent db0caae5b0
commit 654d172363
1 changed files with 2 additions and 1 deletions

View File

@ -1931,7 +1931,8 @@ static HRSRC WINAPI expFindResourceA(HMODULE module, char* name, char* type)
HRSRC result;
result=FindResourceA(module, name, type);
dbgprintf("FindResourceA(module 0x%x, name 0x%x(%s), type 0x%x(%s)) => 0x%x\n", module, HIWORD(name) ? name : "UNICODE", HIWORD(type) ? type : "UNICODE", result);
dbgprintf("FindResourceA(module 0x%x, name 0x%x(%s), type 0x%x(%s)) => 0x%x\n",
module, name, HIWORD(name) ? name : "UNICODE", type, HIWORD(type) ? type : "UNICODE", result);
return result;
}