summaryrefslogtreecommitdiff
path: root/BeagleBoardPkg
diff options
context:
space:
mode:
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2010-02-20 00:12:19 +0000
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2010-02-20 00:12:19 +0000
commitd5505a2afb5067768ca4a91eaf9df6e61250879e (patch)
tree64308168fa0a9d6acb53773c2f9f4900fd9ea17c /BeagleBoardPkg
parentb2a73e21621d6d96194fc44d871da92bb85ec885 (diff)
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
Diffstat (limited to 'BeagleBoardPkg')
-rw-r--r--BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c b/BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c
index 01d798419..e637071df 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");
}
}
}