From 925a2f936ee5c3666469877bfc1af1c0992cc031 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Thu, 8 Jan 2004 03:28:42 +0000 Subject: [PATCH] Always print a message for generic stubs. --- dlls/kernel/thunk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/kernel/thunk.c b/dlls/kernel/thunk.c index be128711587..9480a25f7c2 100644 --- a/dlls/kernel/thunk.c +++ b/dlls/kernel/thunk.c @@ -2007,8 +2007,7 @@ LPVOID WINAPI GetPK16SysVar(void) */ void WINAPI CommonUnimpStub( CONTEXT86 *context ) { - if (context->Eax) - MESSAGE( "*** Unimplemented Win32 API: %s\n", (LPSTR)context->Eax ); + FIXME("generic stub: %s\n", ((LPSTR)context->Eax ? (LPSTR)context->Eax : "?")); switch ((context->Ecx >> 4) & 0x0f) { -- 2.11.4.GIT