1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 19:35:36 +02:00

PR: 255946 -Console output incorrect. Escape charecters should not interpret.

https://bugs.eclipse.org/bugs/show_bug.cgi?id=255946
This commit is contained in:
Alena Laskavaia 2008-11-21 18:04:55 +00:00
parent 6dd52f784d
commit d33651d578

View file

@ -357,7 +357,7 @@ public class RxThread extends Thread {
OutputStream target = session.getMIInferior().getPipedOutputStream();
if (target != null) {
MITargetStreamOutput out = (MITargetStreamOutput) stream;
String str = out.getString();
String str = out.getCString();
if (str != null) {
try {
target.write(str.getBytes());