mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +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,
|
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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue