From 8ffc5c11e018a230d3804eccb348b0dd7256fe57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 23 Feb 2020 21:06:24 +0100 Subject: [PATCH] Fix style in shell.c --- stm-firmware/shell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stm-firmware/shell.c b/stm-firmware/shell.c index ccbe1d0..4da429d 100644 --- a/stm-firmware/shell.c +++ b/stm-firmware/shell.c @@ -60,8 +60,8 @@ static shellmatta_retCode_t shell_cmd_ver(const shellmatta_handle_t handle, unique_id_get(&high_id, &mid_id, &low_id); shellmatta_printf(handle, "Reflow Oven Controller Firmware " xstr(GIT_VER) "\r\n" - "Compiled: " __DATE__ " at " __TIME__ "\r\n" - "Serial: %08X-%08X-%08X", high_id, mid_id, low_id); + "Compiled: " __DATE__ " at " __TIME__ "\r\n" + "Serial: %08X-%08X-%08X", high_id, mid_id, low_id); return SHELLMATTA_OK; }