ntdll: No need for WINE_ prefixed debug output macro.

This commit is contained in:
André Hentschel 2012-01-10 22:29:26 +01:00 committed by Alexandre Julliard
parent 3a82d3b23a
commit 37ba5eb2a2
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ static void segv_handler( int signal, siginfo_t *info, void *ucontext )
rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
break;
default:
WINE_ERR( "Got unexpected trap %ld\n", TRAP_sig(context) );
ERR("Got unexpected trap %ld\n", TRAP_sig(context));
rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
break;
}