mirror of https://github.com/acidanthera/audk.git
Rename Print() to VPrintXY() to eliminate symbol collision with the Print function in the UefiLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6248 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
dc31771382
commit
c17f446756
|
@ -646,7 +646,7 @@ DisableQuietBoot (
|
|||
|
||||
**/
|
||||
UINTN
|
||||
Print (
|
||||
VPrintXY (
|
||||
IN EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput,
|
||||
IN EFI_UGA_DRAW_PROTOCOL *UgaDraw,
|
||||
IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Sto,
|
||||
|
@ -912,6 +912,6 @@ PrintXY (
|
|||
return 0;
|
||||
}
|
||||
|
||||
return Print (GraphicsOutput, UgaDraw, Sto, X, Y, ForeGround, BackGround, Fmt, Args);
|
||||
return VPrintXY (GraphicsOutput, UgaDraw, Sto, X, Y, ForeGround, BackGround, Fmt, Args);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue