From 5413b31d7789161891dc0d69c81d4374648c9b1f Mon Sep 17 00:00:00 2001 From: jljusten Date: Thu, 20 Mar 2008 21:01:21 +0000 Subject: [PATCH] Removed extra typedefs on structures to fix error generated by gcc. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4935 6f19259b-4bc3-4df7-8a09-765794883524 --- EdkCompatibilityPkg/Foundation/Efi/Include/EfiApi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EdkCompatibilityPkg/Foundation/Efi/Include/EfiApi.h b/EdkCompatibilityPkg/Foundation/Efi/Include/EfiApi.h index 87ecd7b22e..693948185d 100644 --- a/EdkCompatibilityPkg/Foundation/Efi/Include/EfiApi.h +++ b/EdkCompatibilityPkg/Foundation/Efi/Include/EfiApi.h @@ -1088,7 +1088,7 @@ typedef struct { #define EFI_2_00_SYSTEM_TABLE_REVISION ((2 << 16) | 00) #define EFI_2_10_SYSTEM_TABLE_REVISION ((2 << 16) | 10) -typedef struct _EFI_SYSTEM_TABLE { +struct _EFI_SYSTEM_TABLE { EFI_TABLE_HEADER Hdr; CHAR16 *FirmwareVendor; @@ -1109,6 +1109,6 @@ typedef struct _EFI_SYSTEM_TABLE { UINTN NumberOfTableEntries; EFI_CONFIGURATION_TABLE *ConfigurationTable; -} EFI_SYSTEM_TABLE; +}; #endif -- 2.39.2