diff mbox

[edk2,27/47] MdeModulePkg/Logo: rebase to ARRAY_SIZE()

Message ID 20161026190504.9888-28-lersek@redhat.com
State Accepted
Commit ac1273090c2ac775d5a7959f5fd6dc75aeba39df
Headers show

Commit Message

Laszlo Ersek Oct. 26, 2016, 7:04 p.m. UTC
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>

---
 MdeModulePkg/Logo/Logo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.9.2


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Comments

Ni, Ruiyu Oct. 27, 2016, 1:53 a.m. UTC | #1
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>


Regards,
Ray

>-----Original Message-----

>From: Laszlo Ersek [mailto:lersek@redhat.com]

>Sent: Thursday, October 27, 2016 3:05 AM

>To: edk2-devel-01 <edk2-devel@ml01.01.org>

>Cc: Tian, Feng <feng.tian@intel.com>; Ni, Ruiyu <ruiyu.ni@intel.com>; Zeng, Star <star.zeng@intel.com>

>Subject: [PATCH 27/47] 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>

>---

> MdeModulePkg/Logo/Logo.c | 2 +-

> 1 file changed, 1 insertion(+), 1 deletion(-)

>

>diff --git a/MdeModulePkg/Logo/Logo.c b/MdeModulePkg/Logo/Logo.c

>index f0792addd3a9..313dd4a7937d 100644

>--- a/MdeModulePkg/Logo/Logo.c

>+++ b/MdeModulePkg/Logo/Logo.c

>@@ -69,7 +69,7 @@ GetImage (

>   }

>

>   Current = *Instance;

>-  if (Current >= sizeof (mLogos) / sizeof (mLogos[0])) {

>+  if (Current >= ARRAY_SIZE (mLogos)) {

>     return EFI_NOT_FOUND;

>   }

>

>--

>2.9.2

>


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/MdeModulePkg/Logo/Logo.c b/MdeModulePkg/Logo/Logo.c
index f0792addd3a9..313dd4a7937d 100644
--- a/MdeModulePkg/Logo/Logo.c
+++ b/MdeModulePkg/Logo/Logo.c
@@ -69,7 +69,7 @@  GetImage (
   }
 
   Current = *Instance;
-  if (Current >= sizeof (mLogos) / sizeof (mLogos[0])) {
+  if (Current >= ARRAY_SIZE (mLogos)) {
     return EFI_NOT_FOUND;
   }