summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complications/totp_face.c
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complications/totp_face.c')
-rw-r--r--movement/watch_faces/complications/totp_face.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complications/totp_face.c b/movement/watch_faces/complications/totp_face.c
index e58fb47d..4aa1382a 100644
--- a/movement/watch_faces/complications/totp_face.c
+++ b/movement/watch_faces/complications/totp_face.c
@@ -52,7 +52,7 @@ bool totp_face_loop(movement_event_t event, movement_settings_t *settings, void
totp_state->steps = result.quot;
}
valid_for = TIMESTEP - result.rem;
- sprintf(buf, "2f%2d%lu", valid_for, totp_state->current_code);
+ sprintf(buf, "2f%2d%06lu", valid_for, totp_state->current_code);
watch_display_string(buf, 0);
break;