mirror of https://github.com/acidanthera/audk.git
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:
parent
b2a73e2162
commit
d5505a2afb
|
@ -63,7 +63,7 @@ EblSymbolTable (
|
||||||
BOOLEAN Elf;
|
BOOLEAN Elf;
|
||||||
|
|
||||||
// Need to add lots of error checking on the passed in string
|
// 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;
|
Elf = (Argc > 2) ? FALSE : TRUE;
|
||||||
|
|
||||||
Status = EfiGetSystemConfigurationTable (&gEfiDebugImageInfoTableGuid, (VOID **)&DebugImageTableHeader);
|
Status = EfiGetSystemConfigurationTable (&gEfiDebugImageInfoTableGuid, (VOID **)&DebugImageTableHeader);
|
||||||
|
@ -87,6 +87,7 @@ EblSymbolTable (
|
||||||
ImageBase += PeCoffSizeOfHeaders;
|
ImageBase += PeCoffSizeOfHeaders;
|
||||||
}
|
}
|
||||||
AsciiPrint (Format, Pdb, ImageBase);
|
AsciiPrint (Format, Pdb, ImageBase);
|
||||||
|
AsciiPrint ("\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue