diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-15 20:10:39 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-15 20:10:39 +0000 |
commit | b6b22b132ada04696a0f7481a12169808c3e2b3e (patch) | |
tree | f376a7fe380a769274e4676c2b0be914e115511c /ShellPkg/Library/UefiShellLevel1CommandsLib | |
parent | a0248b09366c096be88a2fbaaff071b28b5d4ca5 (diff) | |
download | edk2-b6b22b132ada04696a0f7481a12169808c3e2b3e.zip edk2-b6b22b132ada04696a0f7481a12169808c3e2b3e.tar.gz edk2-b6b22b132ada04696a0f7481a12169808c3e2b3e.tar.bz2 |
ShellPkg: Eliminate loss of high bits in return value from exit command on 64 bit platform.
submitted-by: jcarsey
reviewed-by: gookboy15a
reviewed-by: niruiyu
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12356 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellLevel1CommandsLib')
-rw-r--r-- | ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c b/ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c index 5620d02..3a3c59f 100644 --- a/ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c +++ b/ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c @@ -77,16 +77,16 @@ ShellCommandRunExit ( //
// If we are in a batch file and /b then pass TRUE otherwise false...
//
- ShellCommandRegisterExit((BOOLEAN)(gEfiShellProtocol->BatchIsActive() && ShellCommandLineGetFlag(Package, L"/b")));
+ ShellCommandRegisterExit((BOOLEAN)(gEfiShellProtocol->BatchIsActive() && ShellCommandLineGetFlag(Package, L"/b")), RetVal);
- ShellStatus = (SHELL_STATUS)(RetVal);
+ ShellStatus = SHELL_SUCCESS;
}
} else {
// If we are in a batch file and /b then pass TRUE otherwise false...
//
- ShellCommandRegisterExit((BOOLEAN)(gEfiShellProtocol->BatchIsActive() && ShellCommandLineGetFlag(Package, L"/b")));
+ ShellCommandRegisterExit((BOOLEAN)(gEfiShellProtocol->BatchIsActive() && ShellCommandLineGetFlag(Package, L"/b")), 0);
- ShellStatus = (SHELL_STATUS)0;
+ ShellStatus = SHELL_SUCCESS;
}
ShellCommandLineFreeVarList (Package);
|