diff options
author | Mike Fiore <mfiore@multitech.com> | 2015-12-04 10:43:41 -0600 |
---|---|---|
committer | Mike Fiore <mfiore@multitech.com> | 2015-12-04 10:43:41 -0600 |
commit | 2fa742c2c10c1d495a4428d94419e33bcf402199 (patch) | |
tree | 7963884fedf92537a2cca1d428e769f810ccad31 /Layout | |
parent | 7f56fcdc391d449c749ff794518b7fff328d996a (diff) | |
download | mtdot-box-evb-factory-firmware-2fa742c2c10c1d495a4428d94419e33bcf402199.tar.gz mtdot-box-evb-factory-firmware-2fa742c2c10c1d495a4428d94419e33bcf402199.tar.bz2 mtdot-box-evb-factory-firmware-2fa742c2c10c1d495a4428d94419e33bcf402199.zip |
some tweaks to display in Demo Mode
Diffstat (limited to 'Layout')
-rw-r--r-- | Layout/LayoutDemoSampling.cpp | 2 |
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); } |