mirror of https://github.com/acidanthera/audk.git
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:
parent
f5af77a80f
commit
12ea46947d
|
@ -3650,10 +3650,10 @@ InternalShellStrHexToUint64 (
|
|||
Result = 0;
|
||||
|
||||
//
|
||||
// stop at spaces if requested
|
||||
// Skip spaces if requested
|
||||
//
|
||||
if (StopAtSpace && *String == L' ') {
|
||||
break;
|
||||
while (StopAtSpace && *String == L' ') {
|
||||
String++;
|
||||
}
|
||||
|
||||
while (ShellIsHexaDecimalDigitCharacter (*String)) {
|
||||
|
|
Loading…
Reference in New Issue