summaryrefslogtreecommitdiff
path: root/BaseTools/Source/C/Common/CommonLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/C/Common/CommonLib.c')
-rw-r--r--BaseTools/Source/C/Common/CommonLib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/C/Common/CommonLib.c b/BaseTools/Source/C/Common/CommonLib.c
index 5c40fdb..5179c70 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 ++;