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:
ydong10
2012-07-26 05:42:43 +00:00
parent f5af77a80f
commit 12ea46947d

View File

@ -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)) {