diff options
author | Liming Gao <liming.gao@intel.com> | 2016-09-28 14:14:37 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-10-08 13:42:49 +0800 |
commit | 5277efed286d95168742fe257b11fa4578145e32 (patch) | |
tree | dff0bc3bf71d43e143e26803534422e4473e08d8 | |
parent | 0cdde071136b442606ae264227d67b3d65272e70 (diff) | |
download | edk2-platforms-5277efed286d95168742fe257b11fa4578145e32.tar.xz |
BaseTools EfiLdrImage: Remove unnecessary exit (0)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r-- | BaseTools/Source/C/EfiLdrImage/EfiLdrImage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/BaseTools/Source/C/EfiLdrImage/EfiLdrImage.c b/BaseTools/Source/C/EfiLdrImage/EfiLdrImage.c index 88cc345cdc..a46ecf827f 100644 --- a/BaseTools/Source/C/EfiLdrImage/EfiLdrImage.c +++ b/BaseTools/Source/C/EfiLdrImage/EfiLdrImage.c @@ -75,7 +75,6 @@ Returns: --*/
{
printf ("%s Version %d.%d Build %s\n", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION);
- exit (0);
}
VOID
|