diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-27 07:20:20 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-27 07:20:20 +0000 |
commit | d3665c47fb9ec7218db307124b88f39cb8d83cbc (patch) | |
tree | bd86c6c96eefcf07d9e794a7750873852f35a2e0 /MdePkg/Library | |
parent | 9b65a1b81eb5727b4adc9e5737a5fd988a76d81d (diff) | |
download | edk2-platforms-d3665c47fb9ec7218db307124b88f39cb8d83cbc.tar.xz |
Added CONST for some sting type to follow MWG-0.51. Tracker 34 and 36
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@65 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-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 4c068087be..27d82b3feb 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];
|