summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseDebugLibNull/DebugLib.c
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-27 07:19:07 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-27 07:19:07 +0000
commiteb7a248b1e2d59d6a70b133721c86a22d17181e5 (patch)
tree47b1c3c1c2b697f1a53989c42f0ae18c91a7b407 /MdePkg/Library/BaseDebugLibNull/DebugLib.c
parent5e3d9e4ed5d91d9262a51d2f0257d1c3a87b073b (diff)
downloadedk2-eb7a248b1e2d59d6a70b133721c86a22d17181e5.tar.gz
edk2-eb7a248b1e2d59d6a70b133721c86a22d17181e5.tar.bz2
edk2-eb7a248b1e2d59d6a70b133721c86a22d17181e5.zip
Added CONST for some sting type to follow MWG-0.51. Tracker 26 and 28
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@63 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseDebugLibNull/DebugLib.c')
-rw-r--r--MdePkg/Library/BaseDebugLibNull/DebugLib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseDebugLibNull/DebugLib.c b/MdePkg/Library/BaseDebugLibNull/DebugLib.c
index 1440f8f127..35aea32259 100644
--- a/MdePkg/Library/BaseDebugLibNull/DebugLib.c
+++ b/MdePkg/Library/BaseDebugLibNull/DebugLib.c
@@ -34,8 +34,8 @@
VOID
EFIAPI
DebugPrint (
- IN UINTN ErrorLevel,
- IN CHAR8 *Format,
+ IN UINTN ErrorLevel,
+ IN CONST CHAR8 *Format,
...
)
{
@@ -82,9 +82,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
)
{
CHAR8 Buffer[MAX_DEBUG_MESSAGE_LENGTH];