Use writeln instead of write to print the version (#764)

This commit is contained in:
Hiroki Noda 2019-06-03 16:34:17 +09:00 committed by Basile-z
parent 378cbcc6bd
commit e13c4f2f60
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ else
if (printVersion)
{
write(DSCANNER_VERSION);
writeln(DSCANNER_VERSION);
return 0;
}