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:
parent
6dd52f784d
commit
d33651d578
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue