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:
Gary Ching-Pang Lin 2013-07-16 14:40:57 +00:00 committed by jcarsey
parent 6e84b4df30
commit 73c5c61904
1 changed files with 1 additions and 1 deletions

View File

@ -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;