Make unimplemented function message a bit prettier.

This commit is contained in:
Mike Hearn 2005-05-13 13:56:47 +00:00 committed by Alexandre Julliard
parent b39d8fc2a6
commit 5037202554
1 changed files with 2 additions and 2 deletions

View File

@ -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] );
}