diff options
-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;
|