mirror of https://github.com/acidanthera/audk.git
Fix a syntax error. There was an extra closing parenthesis: ')'
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8632 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e0fab0c233
commit
8bb37919e3
|
@ -549,8 +549,19 @@ UpdateOrderPage (
|
|||
OptionsOpCodeHandle = HiiAllocateOpCodeHandle ();
|
||||
ASSERT (OptionsOpCodeHandle != NULL);
|
||||
|
||||
for (Index = 0; ((Index < OptionMenu->MenuNumber) && \
|
||||
(Index < (sizeof (CallbackData->BmmFakeNvData.OptionOrder) / sizeof (UINT8))))); Index++) {
|
||||
for (
|
||||
Index = 0;
|
||||
(
|
||||
(Index < OptionMenu->MenuNumber) &&
|
||||
(Index <
|
||||
(
|
||||
sizeof (CallbackData->BmmFakeNvData.OptionOrder) /
|
||||
sizeof (UINT8)
|
||||
)
|
||||
)
|
||||
);
|
||||
Index++
|
||||
) {
|
||||
NewMenuEntry = BOpt_GetMenuEntry (OptionMenu, Index);
|
||||
HiiCreateOneOfOptionOpCode (
|
||||
OptionsOpCodeHandle,
|
||||
|
|
Loading…
Reference in New Issue