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