Commit 37ba5eb2 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: No need for WINE_ prefixed debug output macro.

parent 3a82d3b2
...@@ -577,7 +577,7 @@ static void segv_handler( int signal, siginfo_t *info, void *ucontext ) ...@@ -577,7 +577,7 @@ static void segv_handler( int signal, siginfo_t *info, void *ucontext )
rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT; rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
break; break;
default: 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; rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment