diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-20 00:12:19 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-20 00:12:19 +0000 |
commit | d5505a2afb5067768ca4a91eaf9df6e61250879e (patch) | |
tree | 64308168fa0a9d6acb53773c2f9f4900fd9ea17c | |
parent | b2a73e21621d6d96194fc44d871da92bb85ec885 (diff) | |
download | edk2-d5505a2afb5067768ca4a91eaf9df6e61250879e.zip edk2-d5505a2afb5067768ca4a91eaf9df6e61250879e.tar.gz edk2-d5505a2afb5067768ca4a91eaf9df6e61250879e.tar.bz2 |
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
-rw-r--r-- | BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c b/BeagleBoardPkg/Library/EblCmdLib/EblCmdLib.c index 01d7984..e637071 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");
}
}
}
|