summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c')
-rw-r--r--ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c b/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c
index 7c08717..16c2df3 100644
--- a/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c
+++ b/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c
@@ -29,11 +29,11 @@ ShellInstall1CommandsLibConstructor (
//
// check our bit of the profiles mask
//
- if ((PcdGet8(PcdShellProfileMask) & BIT2) == 0) {
+ if ((PcdGet8 (PcdShellProfileMask) & BIT2) == 0) {
return (EFI_SUCCESS);
}
- return (BcfgLibraryRegisterBcfgCommand(ImageHandle, SystemTable, L"Install1"));
+ return (BcfgLibraryRegisterBcfgCommand (ImageHandle, SystemTable, L"Install1"));
}
/**
@@ -49,5 +49,5 @@ ShellInstall1CommandsLibDestructor (
IN EFI_SYSTEM_TABLE *SystemTable
)
{
- return (BcfgLibraryUnregisterBcfgCommand(ImageHandle, SystemTable));
+ return (BcfgLibraryUnregisterBcfgCommand (ImageHandle, SystemTable));
}