mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 05:58:13 +00:00
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:
parent
62d2e0a471
commit
daa02beb2c
1 changed files with 6 additions and 3 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue