summaryrefslogtreecommitdiff
path: root/avr/cmd_misc.c
diff options
context:
space:
mode:
authorLeo C.2024-06-22 10:22:12 +0200
committerLeo C.2024-06-22 10:22:12 +0200
commitaea51b6c4c93c56715f50e64d424e1181c6d0242 (patch)
treec1a61e6df6003810de060b5a6b1e6a24822a3755 /avr/cmd_misc.c
parent76f079e76b11f63d0b48317dd3450ddbfab784d9 (diff)
downloadz180-stamp-aea51b6c4c93c56715f50e64d424e1181c6d0242.zip
rewrite of cmd_cpu/do_cpu_freq
Diffstat (limited to 'avr/cmd_misc.c')
-rw-r--r--avr/cmd_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avr/cmd_misc.c b/avr/cmd_misc.c
index ad913e8..63a510c 100644
--- a/avr/cmd_misc.c
+++ b/avr/cmd_misc.c
@@ -104,7 +104,7 @@ command_ret_t do_time(cmd_tbl_t *cmdtp UNUSED, uint_fast8_t flag UNUSED, int arg
sec = (elapsed_ms / 1000) % 60;
ms = elapsed_ms % 1000;
- printf_P(PSTR("\ntime: %lum%u.%03us\n"), min, sec, ms);
+ printf_P(PSTR("\ntime: %lum %u.%03us\n"), min, sec, ms);
return retval;
}