From 224e8e2f47174301ff4b8b88cc96297027e700fe Mon Sep 17 00:00:00 2001 From: jcarsey Date: Thu, 9 May 2013 16:16:21 +0000 Subject: [PATCH] ShellPkg: Return an error when it happens Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey Reviewed-by: Erik Bjorge git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14336 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c index 8aafcced24..3445b7f7e2 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c @@ -1,7 +1,7 @@ /** @file Main file for DmpStore shell Debug1 function. - Copyright (c) 2005 - 2012, Intel Corporation. All rights reserved.
+ Copyright (c) 2005 - 2013, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -248,7 +248,7 @@ ProcessVariables ( } return (SHELL_NOT_FOUND); } - return (SHELL_SUCCESS); + return (ShellStatus); } STATIC CONST SHELL_PARAM_ITEM ParamList[] = { -- 2.39.2