summaryrefslogtreecommitdiff
path: root/ShellPkg
diff options
context:
space:
mode:
authorJaben Carsey <Jaben.carsey@intel.com>2015-02-04 01:23:14 +0000
committershenshushi <shenshushi@Edk2>2015-02-04 01:23:14 +0000
commit432bf14cf11043cb6d95a4a436798c91cf0b29cf (patch)
tree53cd0a4ba8ceac1df93a76482a655b277c9ad1c5 /ShellPkg
parent69c569bf550c3071b4b5dccc52d9b78db2addc2e (diff)
ShellPkg: cast return value to correct type based on what we passed in.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey <Jaben.carsey@intel.com> Reviewed-by: Joe Peterson <joe.peterson@intel.com> Reviewed-by: Shumin Qiu <shumin.qiu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16734 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Application/Shell/Shell.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ShellPkg/Application/Shell/Shell.c b/ShellPkg/Application/Shell/Shell.c
index ba071e58e..dbf4d61aa 100644
--- a/ShellPkg/Application/Shell/Shell.c
+++ b/ShellPkg/Application/Shell/Shell.c
@@ -1302,9 +1302,9 @@ StripUnreplacedEnvironmentVariables(
CHAR16 *CurrentLocator;
for (CurrentLocator = CmdLine ; CurrentLocator != NULL ; ) {
- FirstQuote = FindFirstCharacter(CurrentLocator, L"\"", L'^');
- FirstPercent = FindFirstCharacter(CurrentLocator, L"%", L'^');
- SecondPercent = FirstPercent!=NULL?FindFirstCharacter(FirstPercent+1, L"%", L'^'):NULL;
+ FirstQuote = (CHAR16*)FindFirstCharacter(CurrentLocator, L"\"", L'^');
+ FirstPercent = (CHAR16*)FindFirstCharacter(CurrentLocator, L"%", L'^');
+ SecondPercent = FirstPercent!=NULL?(CHAR16*)FindFirstCharacter(FirstPercent+1, L"%", L'^'):NULL;
if (FirstPercent == NULL || SecondPercent == NULL) {
//
// If we ever dont have 2 % we are done.
@@ -1313,7 +1313,7 @@ StripUnreplacedEnvironmentVariables(
}
if (FirstQuote!= NULL && FirstQuote < FirstPercent) {
- SecondQuote = FindFirstCharacter(FirstQuote+1, L"\"", L'^');
+ SecondQuote = (CHAR16*)FindFirstCharacter(FirstQuote+1, L"\"", L'^');
//
// Quote is first found
//