summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/UefiDebugLibStdErr/DebugLib.c
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-27 07:20:46 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-27 07:20:46 +0000
commitf53ab57cb15d76a1c3ac66c189b31e3b7fab2f31 (patch)
treec36f6c3180af3cad90a826d6f16412c5287842e7 /MdePkg/Library/UefiDebugLibStdErr/DebugLib.c
parentd3665c47fb9ec7218db307124b88f39cb8d83cbc (diff)
downloadedk2-f53ab57cb15d76a1c3ac66c189b31e3b7fab2f31.tar.gz
edk2-f53ab57cb15d76a1c3ac66c189b31e3b7fab2f31.tar.bz2
edk2-f53ab57cb15d76a1c3ac66c189b31e3b7fab2f31.zip
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@66 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDebugLibStdErr/DebugLib.c')
-rw-r--r--MdePkg/Library/UefiDebugLibStdErr/DebugLib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/UefiDebugLibStdErr/DebugLib.c b/MdePkg/Library/UefiDebugLibStdErr/DebugLib.c
index 7acbee5900..18f651c194 100644
--- a/MdePkg/Library/UefiDebugLibStdErr/DebugLib.c
+++ b/MdePkg/Library/UefiDebugLibStdErr/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];