]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EblExternCmd/Main.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / EblExternCmd / Main.c
index 9e75c909cc37f8a14decf7336f8cec18cd791536..dbfe336899c77e55cf625719a54514064ddf3e51 100644 (file)
@@ -1,10 +1,10 @@
 /** @file\r
-  Example of an external EBL command. It's loaded via EBL start command. \r
+  Example of an external EBL command. It's loaded via EBL start command.\r
   Argc and Argv are passed in via "" of the EBL command line.\r
 \r
   Start fs0:\EdkExternCmd.efi "Argv[0] Argv[1] 2"\r
 \r
-  will launch this command with \r
+  will launch this command with\r
     Argv[0] = "Argv[0]"\r
     Argv[1] = "Argv[2]"\r
     Argv[2] = "3"\r
@@ -29,7 +29,7 @@
   Entry point with Argc, Argv. Put your code here.\r
 \r
   @param  Argc   Number of command arguments in Argv\r
-  @param  Argv   Array of strings that represent the parsed command line. \r
+  @param  Argv   Array of strings that represent the parsed command line.\r
                  Argv[0] is the command name\r
 \r
   @return EFI_SUCCESS\r
@@ -47,7 +47,7 @@ EblMain (
   for (Index = 0; Index < Argc; Index++) {\r
     AsciiPrint ("Argv[%d] = %a\n", Index, Argv[Index]);\r
   }\r
-  \r
+\r
   return EFI_SUCCESS;\r
 }\r
 \r