1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

fixed small bug - forgot to use gdb string passed in

This commit is contained in:
David Inglis 2002-10-09 14:14:24 +00:00
parent 975236b144
commit 364318b050

View file

@ -101,7 +101,7 @@ public class MIPlugin extends Plugin {
if (pty != null) { if (pty != null) {
args = new String[] {gdb, "-q", "-nw", "-tty", pty.getSlaveName(), "-i", "mi1", program}; args = new String[] {gdb, "-q", "-nw", "-tty", pty.getSlaveName(), "-i", "mi1", program};
} else { } else {
args = new String[] {"gdb", "-q", "-nw", "-i", "mi1", program}; args = new String[] {gdb, "-q", "-nw", "-i", "mi1", program};
} }
Process pgdb = ProcessFactory.getFactory().exec(args); Process pgdb = ProcessFactory.getFactory().exec(args);