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:
eric_tian 2009-04-30 04:29:27 +00:00
parent 821b090646
commit 26e89679c9
1 changed files with 2 additions and 2 deletions

View File

@ -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;