diff options
Diffstat (limited to 'MdePkg/Library/UefiDebugLibConOut/DebugLib.c')
-rw-r--r-- | MdePkg/Library/UefiDebugLibConOut/DebugLib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c index 4c06808..27d82b3 100644 --- a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c +++ b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c @@ -35,8 +35,8 @@ VOID
EFIAPI
DebugPrint (
- IN UINTN ErrorLevel,
- IN CHAR8 *Format,
+ IN UINTN ErrorLevel,
+ IN CONST CHAR8 *Format,
...
)
{
@@ -97,9 +97,9 @@ DebugPrint ( VOID
EFIAPI
DebugAssert (
- IN CHAR8 *FileName,
- IN INTN LineNumber,
- IN CHAR8 *Description
+ IN CONST CHAR8 *FileName,
+ IN INTN LineNumber,
+ IN CONST CHAR8 *Description
)
{
CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];
|