diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-16 16:53:12 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-16 16:53:12 +0000 |
commit | a04ad3f01fe97649f3ff7097443f08b7a597d797 (patch) | |
tree | a8a4290ca95bfb939b234341c3ba356796a66881 /MdeModulePkg | |
parent | bab3f2d3acb8b66477e6641b330147ec62835ed4 (diff) | |
download | edk2-platforms-a04ad3f01fe97649f3ff7097443f08b7a597d797.tar.xz |
MdePkg/Include/Uefi/UefiTcgPlatform.h:
MdePkg/Include/Protocol/TcgService.h:
MdePkg/Include/IndustryStandard/Tpm12.h:
* Remove usage of '#pragma push' unsupported usage which is not
supported by GCC.
MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c:
* Fix a warning encountered with GCC/IPF when Index2 (as a INT8) is
used as an index to an array on lines 2020 & 2028.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5905 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c b/MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c index 3c5b197c16..a30d8c7f7f 100644 --- a/MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c +++ b/MdeModulePkg/Universal/Network/PxeBcDxe/Pxe_bc_dhcp.c @@ -2101,7 +2101,7 @@ DoDhcpDora ( // now look for DHCP onlys and a Proxy
//
for (Index = 0; Index < NumOffers; ++Index) {
- INT8 Index2;
+ INTN Index2;
//
// ignore proxies, bootps, non DHCP onlys, and bootable DHCPS
|