Make the passed in string not require \n

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10030 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
andrewfish 2010-02-20 00:12:19 +00:00
parent b2a73e2162
commit d5505a2afb
1 changed files with 2 additions and 1 deletions

View File

@ -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");
}
}
}