Use vDbgPrintExWithPrefix in EngDebugPrint instead of using DbgPrint and always printing the address of the va_list plus random crap....

svn path=/trunk/; revision=40423
This commit is contained in:
Timo Kreuzer 2009-04-08 21:52:36 +00:00
parent 62d2e0a471
commit daa02beb2c

View file

@ -40,8 +40,11 @@ EngDebugPrint(PCHAR StandardPrefix,
PCHAR DebugMessage, PCHAR DebugMessage,
va_list ap) va_list ap)
{ {
DbgPrint(StandardPrefix); vDbgPrintExWithPrefix(StandardPrefix,
DbgPrint(DebugMessage, ap); -1,
DbgPrint("\n"); DPFLTR_ERROR_LEVEL,
DebugMessage,
ap);
} }
/* EOF */ /* EOF */