summaryrefslogtreecommitdiff
path: root/Tools/Conf/Migration/R8Lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Conf/Migration/R8Lib.c')
-rw-r--r--Tools/Conf/Migration/R8Lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Conf/Migration/R8Lib.c b/Tools/Conf/Migration/R8Lib.c
index d0ffd26232..9ee9d72667 100644
--- a/Tools/Conf/Migration/R8Lib.c
+++ b/Tools/Conf/Migration/R8Lib.c
@@ -326,7 +326,7 @@ R8_HexStringToBuf (
//
// Find out how many hex characters the string has.
//
- for (Idx = 0, HexCnt = 0; IsHexDigit (&Digit, Str[Idx]); Idx++, HexCnt++);
+ for (Idx = 0, HexCnt = 0; R8_IsHexDigit (&Digit, Str[Idx]); Idx++, HexCnt++);
if (HexCnt == 0) {
*Len = 0;
@@ -349,7 +349,7 @@ R8_HexStringToBuf (
for (Idx = 0; Idx < HexCnt; Idx++) {
- IsHexDigit (&Digit, Str[HexCnt - 1 - Idx]);
+ R8_IsHexDigit (&Digit, Str[HexCnt - 1 - Idx]);
//
// For odd charaters, write the lower nibble for each buffer byte,