summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-27 02:33:17 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-27 02:33:17 +0000
commitc17f44675663474bd6d176c05c4536c5ed5bb5db (patch)
tree6acbdf7b4e7e6c7013bdf8f186a27dca0d61c1c7
parentdc31771382e9892bedaa1dc917df8ec10a91be25 (diff)
downloadedk2-platforms-c17f44675663474bd6d176c05c4536c5ed5bb5db.tar.xz
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
-rw-r--r--MdePkg/Library/GraphicsLib/Graphics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/GraphicsLib/Graphics.c b/MdePkg/Library/GraphicsLib/Graphics.c
index 75aa91dc6c..b0edc3586b 100644
--- a/MdePkg/Library/GraphicsLib/Graphics.c
+++ b/MdePkg/Library/GraphicsLib/Graphics.c
@@ -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);
}