1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Added missing newline characters.

This commit is contained in:
Sergey Prigogin 2013-05-20 14:29:25 -07:00
parent b18bf27bb4
commit 06221100c0

View file

@ -327,6 +327,7 @@ public class LaunchUtils {
String line;
while ((line = reader.readLine()) != null) {
cmdOutput.append(line);
cmdOutput.append('\n');
}
} catch (IOException e) {
throw new DebugException(new Status(IStatus.ERROR, GdbPlugin.PLUGIN_ID, DebugException.REQUEST_FAILED,