From e13c4f2f60c768395a36b9496af9a0a447feff33 Mon Sep 17 00:00:00 2001 From: Hiroki Noda Date: Mon, 3 Jun 2019 16:34:17 +0900 Subject: [PATCH] Use writeln instead of write to print the version (#764) --- src/dscanner/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dscanner/main.d b/src/dscanner/main.d index da3f8ad..d1f4ebd 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -139,7 +139,7 @@ else if (printVersion) { - write(DSCANNER_VERSION); + writeln(DSCANNER_VERSION); return 0; }