summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c')
-rw-r--r--ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
index 0df252b..ddc4bb1 100644
--- a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
+++ b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
@@ -79,7 +79,7 @@ CommandInit(
UINTN Index;
EFI_STATUS Status;
CHAR8 *PlatformLang;
-
+
GetEfiGlobalVariable2 (EFI_PLATFORM_LANG_VARIABLE_NAME, (VOID**)&PlatformLang, NULL);
if (PlatformLang == NULL) {
return EFI_UNSUPPORTED;
@@ -115,7 +115,7 @@ CommandInit(
//
// Find the best matching matching language from the supported languages
- // of Unicode Collation2 protocol.
+ // of Unicode Collation2 protocol.
//
BestLanguage = GetBestLanguage (
Uc->SupportedLanguages,
@@ -311,7 +311,7 @@ ShellCommandFindDynamicCommand (
//
// not found or out of resources
//
- return NULL;
+ return NULL;
}
for (NextCommand = CommandHandleList; *NextCommand != NULL; NextCommand++) {
@@ -328,7 +328,7 @@ ShellCommandFindDynamicCommand (
if (gUnicodeCollation->StriColl(
gUnicodeCollation,
(CHAR16*)CommandString,
- (CHAR16*)DynamicCommand->CommandName) == 0
+ (CHAR16*)DynamicCommand->CommandName) == 0
){
FreePool(CommandHandleList);
return (DynamicCommand);
@@ -429,7 +429,7 @@ ShellCommandGetDynamicCommandHelp(
//
// TODO: how to get proper language?
//
- return DynamicCommand->GetHelp(DynamicCommand, "en");
+ return DynamicCommand->GetHelp(DynamicCommand, "en");
}
/**
@@ -847,7 +847,7 @@ ShellCommandRegisterAlias (
{
ALIAS_LIST *Node;
ALIAS_LIST *CommandAlias;
- ALIAS_LIST *PrevCommandAlias;
+ ALIAS_LIST *PrevCommandAlias;
INTN LexicalMatchValue;
//
@@ -896,7 +896,7 @@ ShellCommandRegisterAlias (
//
// Swap PrevCommandAlias and CommandAlias list entry if PrevCommandAlias list entry
// is alphabetically greater than CommandAlias list entry
- //
+ //
if (LexicalMatchValue > 0) {
CommandAlias = (ALIAS_LIST *) SwapListEntries (&PrevCommandAlias->Link, &CommandAlias->Link);
} else if (LexicalMatchValue < 0) {