1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Patch for Ewa. Wrong command string use for MIExecReturn object. Bug 195779.

This commit is contained in:
Doug Schaefer 2007-08-28 18:26:41 +00:00
parent b6db6179c0
commit 48c59df306

View file

@ -26,7 +26,7 @@ public class MIExecReturn extends MICommand
} }
public MIExecReturn(String miVersion, String arg) { public MIExecReturn(String miVersion, String arg) {
super(miVersion, "-exec-run", new String[] { arg }); //$NON-NLS-1$ super(miVersion, "-exec-return", new String[] { arg }); //$NON-NLS-1$
} }
} }