diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-23 05:30:08 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-23 05:30:08 +0000 |
commit | 36fe40c2ea61a81b7f004886682e55fb2d5358be (patch) | |
tree | 561545cf3b4ddb433f1b2f8761c0da9450c74705 /MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c | |
parent | d9e5c1fffb22d39dd52ef23febe40cd4e2ee0965 (diff) | |
download | edk2-platforms-36fe40c2ea61a81b7f004886682e55fb2d5358be.tar.xz |
1) Add BufToHexString, HexStringToBuf and IsHexDigit to BaseLib.
2) Remove the duplicated functions implementation from the modules that reference these APIs
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5283 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c')
-rw-r--r-- | MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c b/MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c index 5257f32b66..cc580b81c7 100644 --- a/MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c +++ b/MdeModulePkg/Universal/SetupBrowserDxe/InputHandler.c @@ -612,7 +612,7 @@ EnterCarriageReturn: default: if (ManualInput) { if (HexInput) { - if (!R8_IsHexDigit (&Digital, Key.UnicodeChar)) { + if (!IsHexDigit (&Digital, Key.UnicodeChar)) { UpdateStatusBar (INPUT_ERROR, Question->QuestionFlags, TRUE); break; } |