MdeModulePkg/DisplayEngineDxe: rebase to ARRAY_SIZE()
Cc: Dandan Bi <dandan.bi@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Feng Tian <feng.tian@intel.com> Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Feng Tian <feng.tian@Intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
@@ -1070,14 +1070,14 @@ EnterCarriageReturn:
|
||||
|
||||
if (ValidateFail) {
|
||||
UpdateStatusBar (INPUT_ERROR, TRUE);
|
||||
ASSERT (Count < sizeof (PreviousNumber) / sizeof (PreviousNumber[0]));
|
||||
ASSERT (Count < ARRAY_SIZE (PreviousNumber));
|
||||
EditValue = PreviousNumber[Count];
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
if (EditValue > Maximum) {
|
||||
UpdateStatusBar (INPUT_ERROR, TRUE);
|
||||
ASSERT (Count < sizeof (PreviousNumber) / sizeof (PreviousNumber[0]));
|
||||
ASSERT (Count < ARRAY_SIZE (PreviousNumber));
|
||||
EditValue = PreviousNumber[Count];
|
||||
break;
|
||||
}
|
||||
@@ -1086,7 +1086,7 @@ EnterCarriageReturn:
|
||||
UpdateStatusBar (INPUT_ERROR, FALSE);
|
||||
|
||||
Count++;
|
||||
ASSERT (Count < (sizeof (PreviousNumber) / sizeof (PreviousNumber[0])));
|
||||
ASSERT (Count < (ARRAY_SIZE (PreviousNumber)));
|
||||
PreviousNumber[Count] = EditValue;
|
||||
|
||||
gST->ConOut->SetAttribute (gST->ConOut, GetHighlightTextColor ());
|
||||
|
Reference in New Issue
Block a user