diff options
Diffstat (limited to 'BaseTools/Source/C/Common/CommonLib.c')
-rw-r--r-- | BaseTools/Source/C/Common/CommonLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/C/Common/CommonLib.c b/BaseTools/Source/C/Common/CommonLib.c index 5c40fdb5fd..5179c701cc 100644 --- a/BaseTools/Source/C/Common/CommonLib.c +++ b/BaseTools/Source/C/Common/CommonLib.c @@ -2057,13 +2057,13 @@ IsHexStr ( )
{
//
- // skip preceeding white space
+ // skip preceding white space
//
while ((*Str != 0) && *Str == L' ') {
Str ++;
}
//
- // skip preceeding zeros
+ // skip preceding zeros
//
while ((*Str != 0) && *Str == L'0') {
Str ++;
|