diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2015-03-13 02:04:17 +0000 |
---|---|---|
committer | shenshushi <shenshushi@Edk2> | 2015-03-13 02:04:17 +0000 |
commit | af7a3a5463688ea814e0c0ad9fcea1d061c1efbe (patch) | |
tree | 9f6b94dc7ed65e66788e64695c48d4de3abbe840 | |
parent | f6c5031926e383469bc5d06fd005488d6efe961a (diff) | |
download | edk2-platforms-af7a3a5463688ea814e0c0ad9fcea1d061c1efbe.tar.xz |
ShellPkg: Add type cast to avoid build failure in VS2005.
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@17043 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | ShellPkg/Library/UefiShellLib/UefiShellLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellLib/UefiShellLib.c b/ShellPkg/Library/UefiShellLib/UefiShellLib.c index 2e6301d70a..da787f6b50 100644 --- a/ShellPkg/Library/UefiShellLib/UefiShellLib.c +++ b/ShellPkg/Library/UefiShellLib/UefiShellLib.c @@ -2101,7 +2101,7 @@ InternalCommandLineParse ( ASSERT(GetItemValue == 0);
break;
}
- } else if (GetItemValue != 0 && CurrentItemPackage != NULL && !InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers, CurrentItemPackage->Type == TypeTimeValue)) {
+ } else if (GetItemValue != 0 && CurrentItemPackage != NULL && !InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers, (BOOLEAN)(CurrentItemPackage->Type == TypeTimeValue))) {
//
// get the item VALUE for a previous flag
//
|