mirror of https://github.com/acidanthera/audk.git
ShellPkg: Add a typecast to 'BOOLEAN' 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@16199 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e456bb84e0
commit
65ef0b0d01
|
@ -459,7 +459,7 @@ ValidateAndMoveFiles(
|
|||
//
|
||||
// Get and validate the destination location
|
||||
//
|
||||
ShellStatus = GetDestinationLocation(CleanFilePathStr, &DestPath, Cwd, FileList->Link.ForwardLink == FileList->Link.BackLink, &Attr);
|
||||
ShellStatus = GetDestinationLocation(CleanFilePathStr, &DestPath, Cwd, (BOOLEAN)(FileList->Link.ForwardLink == FileList->Link.BackLink), &Attr);
|
||||
FreePool (CleanFilePathStr);
|
||||
|
||||
if (ShellStatus != SHELL_SUCCESS) {
|
||||
|
|
Loading…
Reference in New Issue