diff options
Diffstat (limited to 'FatPkg/EnhancedFatDxe/FileName.c')
-rw-r--r-- | FatPkg/EnhancedFatDxe/FileName.c | 4 |
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;
|