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/Print | |
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/Print')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h b/EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h index eba79cd072..bdd9df19f4 100644 --- a/EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h +++ b/EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h @@ -41,9 +41,9 @@ UINTN IN VA_LIST Marker
);
-typedef struct _EFI_PRINT_PROTOCOL {
+struct _EFI_PRINT_PROTOCOL {
EFI_VSPRINT VSPrint;
-} EFI_PRINT_PROTOCOL;
+};
extern EFI_GUID gEfiPrintProtocolGuid;
|