mirror of https://github.com/acidanthera/audk.git
update to pass GCC build as we replace VA_START with __builtin_va_start
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8209 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
821b090646
commit
26e89679c9
|
@ -837,7 +837,7 @@ HiiConstructConfigAltResp (
|
|||
//
|
||||
VA_START (Args, BlockNameArray);
|
||||
while (TRUE) {
|
||||
AltCfgId = VA_ARG (Args, UINT16);
|
||||
AltCfgId = VA_ARG (Args, UINTN);
|
||||
Buffer = VA_ARG (Args, UINT8 *);
|
||||
if (Buffer == NULL) {
|
||||
break;
|
||||
|
@ -891,7 +891,7 @@ HiiConstructConfigAltResp (
|
|||
//
|
||||
VA_START (Args, BlockNameArray);
|
||||
while (TRUE) {
|
||||
AltCfgId = VA_ARG (Args, UINT16);
|
||||
AltCfgId = VA_ARG (Args, UINTN);
|
||||
Buffer = VA_ARG (Args, UINT8 *);
|
||||
if (Buffer == NULL) {
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue