From 4b0935d249d444cbba4c3079bc9e8a231858d981 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 8 Jan 2019 12:23:55 +0100 Subject: [PATCH] Space between a number and a unit of measurement The International System of Units (SI) and NIST prescribe inserting a space between a number and a unit of measurement. --- src/core/osutils.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/osutils.cc b/src/core/osutils.cc index f023a465..2647c26c 100644 --- a/src/core/osutils.cc +++ b/src/core/osutils.cc @@ -769,6 +769,7 @@ string decimalkilos(unsigned long long value) } out << value; + out << " "; if ((i > 0) && (i <= strlen(prefixes))) out << prefixes[i - 1];