summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/main_clock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main_clock.cpp b/apps/main_clock.cpp
index df7dfae..f034e04 100644
--- a/apps/main_clock.cpp
+++ b/apps/main_clock.cpp
@@ -11,7 +11,7 @@ namespace app_main_clock {
void time_as_str(char *buf, uint buf_size, const datetime_t *t) {
snprintf(buf,
buf_size,
- "%d:%02d:%02d",
+ "%d:%02d:%02d ",
t->hour,
t->min,
t->sec);
@@ -77,4 +77,4 @@ namespace app_main_clock {
int destroy(Api *app_api) {
return 1;
}
-} \ No newline at end of file
+}