mirror of https://github.com/acidanthera/audk.git
ShellPkg: Update error to be SHELL_STATUS and not EFI_STATUS.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Ching-Pang Lin <glin@suse.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14475 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6e84b4df30
commit
73c5c61904
|
@ -127,7 +127,7 @@ CascadeDelete(
|
|||
//
|
||||
TempName = AllocateZeroPool(StrSize(Node->FullName) + StrSize(Node2->FullName));
|
||||
if (TempName == NULL) {
|
||||
ShellStatus = EFI_OUT_OF_RESOURCES;
|
||||
ShellStatus = SHELL_OUT_OF_RESOURCES;
|
||||
} else {
|
||||
StrCpy(TempName, Node->FullName);
|
||||
TempName[StrStr(TempName, L":")+1-TempName] = CHAR_NULL;
|
||||
|
|
Loading…
Reference in New Issue