Roll back the change which caused build fail
Signed-off-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13557 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -3650,10 +3650,10 @@ InternalShellStrHexToUint64 (
|
|||||||
Result = 0;
|
Result = 0;
|
||||||
|
|
||||||
//
|
//
|
||||||
// stop at spaces if requested
|
// Skip spaces if requested
|
||||||
//
|
//
|
||||||
if (StopAtSpace && *String == L' ') {
|
while (StopAtSpace && *String == L' ') {
|
||||||
break;
|
String++;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (ShellIsHexaDecimalDigitCharacter (*String)) {
|
while (ShellIsHexaDecimalDigitCharacter (*String)) {
|
||||||
|
Reference in New Issue
Block a user