diff --git a/reactos/subsystems/win32/win32k/eng/debug.c b/reactos/subsystems/win32/win32k/eng/debug.c index 30d37e757ee..42b01a4e094 100644 --- a/reactos/subsystems/win32/win32k/eng/debug.c +++ b/reactos/subsystems/win32/win32k/eng/debug.c @@ -40,8 +40,11 @@ EngDebugPrint(PCHAR StandardPrefix, PCHAR DebugMessage, va_list ap) { - DbgPrint(StandardPrefix); - DbgPrint(DebugMessage, ap); - DbgPrint("\n"); + vDbgPrintExWithPrefix(StandardPrefix, + -1, + DPFLTR_ERROR_LEVEL, + DebugMessage, + ap); } + /* EOF */