diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 20:45:58 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 20:45:58 +0000 |
commit | 9c092841829b153eef01007ddb5df50e87f9110f (patch) | |
tree | 8197332e397050685d3512caba1beacbf35f5d77 /EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h | |
parent | e5bce2758f79f8b1d5a5466d48ff482b1b06670e (diff) | |
download | edk2-platforms-9c092841829b153eef01007ddb5df50e87f9110f.tar.xz |
Removed extra typedefs on structures to fix error generated by gcc.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4929 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h b/EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h index 174869329e..3c684568eb 100644 --- a/EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h +++ b/EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/DebugAssert.h @@ -73,7 +73,7 @@ EFI_STATUS IN UINTN ErrorLevel
);
-typedef struct _EFI_DEBUG_ASSERT_PROTOCOL {
+struct _EFI_DEBUG_ASSERT_PROTOCOL {
EFI_DEBUG_ASSERT Assert;
EFI_DEBUG_PRINT Print;
@@ -82,7 +82,7 @@ typedef struct _EFI_DEBUG_ASSERT_PROTOCOL { EFI_GET_ERROR_LEVEL GetErrorLevel;
EFI_SET_ERROR_LEVEL SetErrorLevel;
-} EFI_DEBUG_ASSERT_PROTOCOL;
+};
extern EFI_GUID gEfiDebugAssertProtocolGuid;
|