From c17f44675663474bd6d176c05c4536c5ed5bb5db Mon Sep 17 00:00:00 2001 From: mdkinney Date: Mon, 27 Oct 2008 02:33:17 +0000 Subject: [PATCH] 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 --- MdePkg/Library/GraphicsLib/Graphics.c | 4 ++-- 1 file 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); } -- 2.39.2