Make unimplemented function message a bit prettier.
This commit is contained in:
parent
b39d8fc2a6
commit
5037202554
|
@ -235,11 +235,11 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
|
|||
if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
|
||||
{
|
||||
if (HIWORD(rec->ExceptionInformation[1]))
|
||||
FIXME( "call (from %p) to unimplemented function %s.%s\n",
|
||||
MESSAGE( "wine: Call from %p to unimplemented function %s.%s, aborting\n",
|
||||
rec->ExceptionAddress,
|
||||
(char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
|
||||
else
|
||||
FIXME( "call (from %p) to unimplemented function %s.%ld\n",
|
||||
MESSAGE( "wine: Call from %p to unimplemented function %s.%ld, aborting\n",
|
||||
rec->ExceptionAddress,
|
||||
(char*)rec->ExceptionInformation[0], rec->ExceptionInformation[1] );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue