diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2015-06-09 01:14:10 +0000 |
---|---|---|
committer | shenshushi <shenshushi@Edk2> | 2015-06-09 01:14:10 +0000 |
commit | 4fe19afeaaac4989db3cebec1c17401f826c3d9d (patch) | |
tree | ceebe61a5ffd0e322340ca5b8473f2ba1532038e | |
parent | 496157c15f672bacc3b5ab10bf19988323186fb7 (diff) | |
download | edk2-platforms-4fe19afeaaac4989db3cebec1c17401f826c3d9d.tar.xz |
ShellPkg: Fix the Non-ASCII char and do code refine.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17583 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c b/ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c index 687ced6b63..12fe87750c 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c @@ -190,7 +190,7 @@ ParseReturnStdInLine ( /**
Handle stings for SFO Output with escape character ^ in a string
- 1. Quotation marks in the string must be escaped by using a ^ character (i.e. ^”).
+ 1. Quotation marks in the string must be escaped by using a ^ character (i.e. ^").
2. The ^ character may be inserted using ^^.
@param[in] String The Unicode NULL-terminated string.
@@ -290,7 +290,7 @@ PerformParsing( TempLine = ShellFileHandleReturnLine (FileHandle, &Ascii);
}
- if ((TempLine == NULL) || (*TempLine == CHAR_NULL && StreamingUnicode == TRUE)) {
+ if ((TempLine == NULL) || (*TempLine == CHAR_NULL && StreamingUnicode)) {
break;
}
|