diff options
author | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-26 10:18:56 +0000 |
---|---|---|
committer | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-26 10:18:56 +0000 |
commit | ea62f12ac68b5f2881563420ec9144f81cfe88d9 (patch) | |
tree | 8ccc1fbf5fdd0ff2e05d34f7e66efc5c4efc9e56 /Tools/Source/TianoTools | |
parent | a490bca85d9cd7ee7fd4934b7336c3da69b78f80 (diff) | |
download | edk2-platforms-ea62f12ac68b5f2881563420ec9144f81cfe88d9.tar.xz |
fixed EDKT139.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1101 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/TianoTools')
-rw-r--r-- | Tools/Source/TianoTools/String/PrintLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/String/PrintLib.c b/Tools/Source/TianoTools/String/PrintLib.c index d27db98ddd..eef3f4d083 100644 --- a/Tools/Source/TianoTools/String/PrintLib.c +++ b/Tools/Source/TianoTools/String/PrintLib.c @@ -403,7 +403,8 @@ BasePrintLibVSPrint ( }
break;
case '\n':
- ArgumentString = "\r\n";
+ ArgumentString = "\n";
+
break;
default:
ArgumentString = (CHAR8 *)&FormatCharacter;
|