mirror of https://github.com/acidanthera/audk.git
Converse the return value from 'int' to 'BOOLEAN' for function ‘ContainsSplit’ in Shell.c.
Signed-off-by: Shumin Qiu <shumin.qiu@intel.com> Reviewed-by: Ni, Ruiyu <ruiyu.ni@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15006 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
957914ee65
commit
8dcd84b9d7
|
@ -144,7 +144,7 @@ ContainsSplit(
|
|||
{
|
||||
CONST CHAR16 *TempSpot;
|
||||
TempSpot = FindSplit(CmdLine);
|
||||
return (TempSpot != NULL && *TempSpot != CHAR_NULL);
|
||||
return (BOOLEAN) ((TempSpot != NULL) && (*TempSpot != CHAR_NULL));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue