mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
5e3d9e4ed5
commit
eb7a248b1e
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue