mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:01:43 +00:00
- Fix kernel mode debug output broken in 35520
- Patch by Alex svn path=/trunk/; revision=35522
This commit is contained in:
parent
81af67a6fe
commit
7e8e8407d0
1 changed files with 4 additions and 4 deletions
|
@ -186,7 +186,7 @@ vDbgPrintEx(IN ULONG ComponentId,
|
|||
IN va_list ap)
|
||||
{
|
||||
/* Call the internal routine that also handles ControlC */
|
||||
return vDbgPrintExWithPrefixInternal(NULL,
|
||||
return vDbgPrintExWithPrefixInternal("",
|
||||
ComponentId,
|
||||
Level,
|
||||
Format,
|
||||
|
@ -206,7 +206,7 @@ DbgPrint(PCCH Format,
|
|||
|
||||
/* Call the internal routine that also handles ControlC */
|
||||
va_start(ap, Format);
|
||||
return vDbgPrintExWithPrefixInternal(NULL,
|
||||
return vDbgPrintExWithPrefixInternal("",
|
||||
-1,
|
||||
DPFLTR_ERROR_LEVEL,
|
||||
Format,
|
||||
|
@ -229,7 +229,7 @@ DbgPrintEx(IN ULONG ComponentId,
|
|||
|
||||
/* Call the internal routine that also handles ControlC */
|
||||
va_start(ap, Format);
|
||||
return vDbgPrintExWithPrefixInternal(NULL,
|
||||
return vDbgPrintExWithPrefixInternal("",
|
||||
ComponentId,
|
||||
Level,
|
||||
Format,
|
||||
|
@ -250,7 +250,7 @@ DbgPrintReturnControlC(PCH Format,
|
|||
|
||||
/* Call the internal routine that also handles ControlC */
|
||||
va_start(ap, Format);
|
||||
return vDbgPrintExWithPrefixInternal(NULL,
|
||||
return vDbgPrintExWithPrefixInternal("",
|
||||
-1,
|
||||
DPFLTR_ERROR_LEVEL,
|
||||
Format,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue