]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.c
udk2010.up2.shell initial release.
[mirror_edk2.git] / ShellPkg / Library / UefiShellCEntryLib / UefiShellCEntryLib.c
index 6160df576a10aada5104db504ed235d3e3ccebb2..60b15fe8a0ab4c67b61bf972bb2fe1b5a662e79a 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Provides application point extension for "C" style main funciton\r
 \r
-  Copyright (c) 2009-2010, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -59,7 +59,7 @@ ShellCEntryLib (
                              ImageHandle,\r
                              NULL,\r
                              EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
-                             );\r
+                            );\r
   if (!EFI_ERROR(Status)) {\r
     //\r
     // use shell 2.0 interface\r
@@ -67,7 +67,7 @@ ShellCEntryLib (
     ReturnFromMain = ShellAppMain (\r
                        EfiShellParametersProtocol->Argc,\r
                        EfiShellParametersProtocol->Argv\r
-                       );\r
+                      );\r
   } else {\r
     //\r
     // try to get shell 1.0 interface instead.\r
@@ -78,7 +78,7 @@ ShellCEntryLib (
                                ImageHandle,\r
                                NULL,\r
                                EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
-                               );\r
+                              );\r
     if (!EFI_ERROR(Status)) {\r
       //\r
       // use shell 1.0 interface\r
@@ -86,7 +86,7 @@ ShellCEntryLib (
       ReturnFromMain = ShellAppMain (\r
                          EfiShellInterface->Argc,\r
                          EfiShellInterface->Argv\r
-                         );\r
+                        );\r
     } else {\r
       ASSERT(FALSE);\r
     }\r