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>
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user