summaryrefslogtreecommitdiff
path: root/FatPkg/EnhancedFatDxe/FileName.c
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2016-10-26 18:33:08 +0200
committerLaszlo Ersek <lersek@redhat.com>2016-10-27 11:10:54 +0200
commit0cdc10bdca1c0e1a002815f1193cc4a6452dc5e7 (patch)
treead6db5820aa58d44bd07fcb84c8a972f4de4bff3 /FatPkg/EnhancedFatDxe/FileName.c
parentbd79132f3e715b41ebc1732238b1497a6fab833a (diff)
downloadedk2-platforms-0cdc10bdca1c0e1a002815f1193cc4a6452dc5e7.tar.xz
FatPkg/EnhancedFatDxe: rebase to ARRAY_SIZE()
Cc: Ruiyu Ni <ruiyu.ni@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: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'FatPkg/EnhancedFatDxe/FileName.c')
-rw-r--r--FatPkg/EnhancedFatDxe/FileName.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FatPkg/EnhancedFatDxe/FileName.c b/FatPkg/EnhancedFatDxe/FileName.c
index 551cda53b9..5df403625d 100644
--- a/FatPkg/EnhancedFatDxe/FileName.c
+++ b/FatPkg/EnhancedFatDxe/FileName.c
@@ -310,7 +310,7 @@ Returns:
// Lower case a copy of the string, if it matches the
// original then the string is lower case
//
- StrCpyS (Buffer, sizeof (Buffer) / sizeof (Buffer[0]), Str);
+ StrCpyS (Buffer, ARRAY_SIZE (Buffer), Str);
FatStrLwr (Buffer);
if (StrCmp (Str, Buffer) == 0) {
OutCaseFlag = InCaseFlag;
@@ -319,7 +319,7 @@ Returns:
// Upper case a copy of the string, if it matches the
// original then the string is upper case
//
- StrCpyS (Buffer, sizeof (Buffer) / sizeof (Buffer[0]), Str);
+ StrCpyS (Buffer, ARRAY_SIZE (Buffer), Str);
FatStrUpr (Buffer);
if (StrCmp (Str, Buffer) == 0) {
OutCaseFlag = 0;