summaryrefslogtreecommitdiff
path: root/edk2/StdLib/LibC
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2012-06-20 20:28:05 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2012-06-20 20:28:05 +0000
commitcf642ed8728378175502e6688bd5e8c1e0a0b309 (patch)
tree8b9bb280994d6f67c0d41000f3fc80320a483407 /edk2/StdLib/LibC
parent07f79b32c710034af12ad86d636ccfe606fd1e7f (diff)
StdLib/LibC/Uefi/Devices/Console/daConsole.c: Fix name of the XY offset union.
The XYoffset union typedef has been renamed to XY_OFFSET to conform to the C Coding Standards. Fixes a build error. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: daryl.mcdaniel@intel.com Reviewed-by: erik.c.bjorge@intel.com git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk@13462 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'edk2/StdLib/LibC')
-rw-r--r--edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c b/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c
index 655b68521..bfcc4a292 100644
--- a/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c
+++ b/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c
@@ -331,7 +331,7 @@ da_ConStat(
{
ConInstance *Stream;
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Proto;
- XYoffset CursorPos;
+ XY_OFFSET CursorPos;
INT32 OutMode;
UINTN ModeCol;
UINTN ModeRow;