MdeModulePkg/Logo: rebase to ARRAY_SIZE()

Cc: Feng Tian <feng.tian@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@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: Ruiyu Ni <ruiyu.ni@intel.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:
Laszlo Ersek 2016-10-26 19:08:50 +02:00
parent fe69b39870
commit ac1273090c
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ GetImage (
}
Current = *Instance;
if (Current >= sizeof (mLogos) / sizeof (mLogos[0])) {
if (Current >= ARRAY_SIZE (mLogos)) {
return EFI_NOT_FOUND;
}