From a76588cf5d81529419a86f3f2e0f9197cb53f10f Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 22 May 2018 17:48:29 +0200 Subject: [PATCH] Added newline at the end of --version output See #7549 --- app/src/processing/app/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 444624380..3cfa4c502 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -488,7 +488,7 @@ public class Base { } else if (parser.isGetPrefMode()) { BaseNoGui.dumpPrefs(parser); } else if (parser.isVersionMode()) { - System.out.print("Arduino: " + BaseNoGui.VERSION_NAME_LONG); + System.out.println("Arduino: " + BaseNoGui.VERSION_NAME_LONG); System.exit(0); } }