]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Make the passed in string not require \n
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>
Sat, 20 Feb 2010 00:12:19 +0000 (00:12 +0000)
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>
Sat, 20 Feb 2010 00:12:19 +0000 (00:12 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10030 6f19259b-4bc3-4df7-8a09-765794883524

BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c

index 01d798419382cc991331383607f6dbbfcaafc924..e637071df009723362798569c89980f8a4422486 100644 (file)
@@ -63,7 +63,7 @@ EblSymbolTable (
   BOOLEAN                           Elf;\r
   \r
   // Need to add lots of error checking on the passed in string\r
-  Format = (Argc > 1) ? Argv[1] : "load /a /ni /np %a & 0x%x\n";\r
+  Format = (Argc > 1) ? Argv[1] : "load /a /ni /np %a & 0x%x";\r
   Elf = (Argc > 2) ? FALSE : TRUE;\r
   \r
   Status = EfiGetSystemConfigurationTable (&gEfiDebugImageInfoTableGuid, (VOID **)&DebugImageTableHeader);\r
@@ -87,6 +87,7 @@ EblSymbolTable (
           ImageBase += PeCoffSizeOfHeaders;\r
         } \r
         AsciiPrint (Format, Pdb, ImageBase);\r
+        AsciiPrint ("\n");\r
       }\r
     }  \r
   }\r