summaryrefslogtreecommitdiff
path: root/Layout
diff options
context:
space:
mode:
Diffstat (limited to 'Layout')
-rw-r--r--Layout/LayoutDemoSampling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Layout/LayoutDemoSampling.cpp b/Layout/LayoutDemoSampling.cpp
index 08d74ff..14a4cf7 100644
--- a/Layout/LayoutDemoSampling.cpp
+++ b/Layout/LayoutDemoSampling.cpp
@@ -58,7 +58,7 @@ void LayoutDemoSampling::updateCountdown(uint32_t seconds) {
// for some reason, there's a % character that gets displayed in the last column
// add the extra spaces to wipe it out
writeField(_fInfo, "No Free Channel ", true);
- size = snprintf(buf, sizeof(buf), "%lu s", seconds);
+ size = snprintf(buf, sizeof(buf), "%lu s ", seconds);
writeField(_fSw2, buf, size, true);
}