summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 803966c647..0c1244017d 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -77,7 +77,7 @@ char *output_dyn_value(char *buf, int buf_size, int value,
77 snprintf(tbuf, sizeof(tbuf), "%d%s%02d", value, str(LANG_POINT), 77 snprintf(tbuf, sizeof(tbuf), "%d%s%02d", value, str(LANG_POINT),
78 fraction / 10); 78 fraction / 10);
79 79
80 snprintf(buf, buf_size, "%s %s", tbuf, P2STR(units[unit_no])); 80 snprintf(buf, buf_size, "%s%s", tbuf, P2STR(units[unit_no]));
81 } 81 }
82 else 82 else
83 { 83 {