mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 09:45:39 +02:00
Wrong error code used.
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
acda777315
commit
2c70025486
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public class LaunchUtils {
|
||||||
IPath programPath = new Path(programName);
|
IPath programPath = new Path(programName);
|
||||||
if (programPath.isEmpty()) {
|
if (programPath.isEmpty()) {
|
||||||
abort(LaunchMessages.getString("AbstractCLaunchDelegate.Program_file_does_not_exist"), null, //$NON-NLS-1$
|
abort(LaunchMessages.getString("AbstractCLaunchDelegate.Program_file_does_not_exist"), null, //$NON-NLS-1$
|
||||||
ICDTLaunchConfigurationConstants.ERR_UNSPECIFIED_PROGRAM);
|
ICDTLaunchConfigurationConstants.ERR_PROGRAM_NOT_EXIST);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!programPath.isAbsolute() && cproject != null) {
|
if (!programPath.isAbsolute() && cproject != null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue