commit | 12ea46947dbe411cc278a8893dd9df4587d9c075 | [log] [tgz] |
---|---|---|
author | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | Thu Jul 26 05:42:43 2012 +0000 |
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | Thu Jul 26 05:42:43 2012 +0000 |
tree | a465bc5896e586ccdf8a5a65720df5687348bbaf | |
parent | f5af77a80ff54f3c37cfb16ff5ede38a75008ea1 [diff] [blame] |
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
diff --git a/ShellPkg/Library/UefiShellLib/UefiShellLib.c b/ShellPkg/Library/UefiShellLib/UefiShellLib.c index 75ecfa5..1929349 100644 --- a/ShellPkg/Library/UefiShellLib/UefiShellLib.c +++ b/ShellPkg/Library/UefiShellLib/UefiShellLib.c
@@ -3650,10 +3650,10 @@ Result = 0; // - // stop at spaces if requested + // Skip spaces if requested // - if (StopAtSpace && *String == L' ') { - break; + while (StopAtSpace && *String == L' ') { + String++; } while (ShellIsHexaDecimalDigitCharacter (*String)) {