summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/UefiApplicationEntryPoint
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/UefiApplicationEntryPoint')
-rw-r--r--MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c b/MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c
index 324e88c906..0a33e7a223 100644
--- a/MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c
+++ b/MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c
@@ -12,7 +12,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
#include <Library/DebugLib.h>
#include <Library/UefiBootServicesTableLib.h>
-
/**
Entry point to UEFI Application.
@@ -37,7 +36,7 @@ _ModuleEntryPoint (
IN EFI_SYSTEM_TABLE *SystemTable
)
{
- EFI_STATUS Status;
+ EFI_STATUS Status;
if (_gUefiDriverRevision != 0) {
//
@@ -69,7 +68,6 @@ _ModuleEntryPoint (
return Status;
}
-
/**
Invokes the library destructors for all dependent libraries and terminates
the UEFI Application.
@@ -92,7 +90,6 @@ Exit (
gBS->Exit (gImageHandle, Status, 0, NULL);
}
-
/**
Required by the EBC compiler and identical in functionality to _ModuleEntryPoint().