From: jljusten Date: Thu, 20 Mar 2008 21:01:21 +0000 (+0000) Subject: Removed extra typedefs on structures to fix error generated by gcc. X-Git-Tag: edk2-stable201903~21267 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=5413b31d7789161891dc0d69c81d4374648c9b1f 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 --- 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