summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-05 23:50:40 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-05 23:50:40 +0000
commit654d172363942f2b234c8d7b9fde7c0308ef5268 (patch)
tree0a37c5d5c99c5dd240a75664a3d06628ba786b0e /loader
parentdb0caae5b015a1b05c7052539e405bd75f313360 (diff)
downloadmpv-654d172363942f2b234c8d7b9fde7c0308ef5268.tar.bz2
mpv-654d172363942f2b234c8d7b9fde7c0308ef5268.tar.xz
bad debug printf caused sig11 with divx audio
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4546 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/win32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/win32.c b/loader/win32.c
index eeb2114015..2964255461 100644
--- a/loader/win32.c
+++ b/loader/win32.c
@@ -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;
}