[NTOS:KD64] Format string of KdpDprintf can be const.

This commit is contained in:
Hermès Bélusca-Maïto 2023-03-22 17:02:19 +01:00
parent 16decc61be
commit 9d9536d431
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 2 additions and 2 deletions

View file

@ -515,7 +515,7 @@ KdpSysCheckLowMemory(
VOID VOID
__cdecl __cdecl
KdpDprintf( KdpDprintf(
_In_ PCHAR Format, _In_ PCSTR Format,
...); ...);
BOOLEAN BOOLEAN

View file

@ -526,7 +526,7 @@ KdpPrint(
VOID VOID
__cdecl __cdecl
KdpDprintf( KdpDprintf(
_In_ PCHAR Format, _In_ PCSTR Format,
...) ...)
{ {
STRING String; STRING String;