mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:35:45 +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)
|
IN va_list ap)
|
||||||
{
|
{
|
||||||
/* Call the internal routine that also handles ControlC */
|
/* Call the internal routine that also handles ControlC */
|
||||||
return vDbgPrintExWithPrefixInternal(NULL,
|
return vDbgPrintExWithPrefixInternal("",
|
||||||
ComponentId,
|
ComponentId,
|
||||||
Level,
|
Level,
|
||||||
Format,
|
Format,
|
||||||
|
@ -206,7 +206,7 @@ DbgPrint(PCCH Format,
|
||||||
|
|
||||||
/* Call the internal routine that also handles ControlC */
|
/* Call the internal routine that also handles ControlC */
|
||||||
va_start(ap, Format);
|
va_start(ap, Format);
|
||||||
return vDbgPrintExWithPrefixInternal(NULL,
|
return vDbgPrintExWithPrefixInternal("",
|
||||||
-1,
|
-1,
|
||||||
DPFLTR_ERROR_LEVEL,
|
DPFLTR_ERROR_LEVEL,
|
||||||
Format,
|
Format,
|
||||||
|
@ -229,7 +229,7 @@ DbgPrintEx(IN ULONG ComponentId,
|
||||||
|
|
||||||
/* Call the internal routine that also handles ControlC */
|
/* Call the internal routine that also handles ControlC */
|
||||||
va_start(ap, Format);
|
va_start(ap, Format);
|
||||||
return vDbgPrintExWithPrefixInternal(NULL,
|
return vDbgPrintExWithPrefixInternal("",
|
||||||
ComponentId,
|
ComponentId,
|
||||||
Level,
|
Level,
|
||||||
Format,
|
Format,
|
||||||
|
@ -250,7 +250,7 @@ DbgPrintReturnControlC(PCH Format,
|
||||||
|
|
||||||
/* Call the internal routine that also handles ControlC */
|
/* Call the internal routine that also handles ControlC */
|
||||||
va_start(ap, Format);
|
va_start(ap, Format);
|
||||||
return vDbgPrintExWithPrefixInternal(NULL,
|
return vDbgPrintExWithPrefixInternal("",
|
||||||
-1,
|
-1,
|
||||||
DPFLTR_ERROR_LEVEL,
|
DPFLTR_ERROR_LEVEL,
|
||||||
Format,
|
Format,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue