diff options
author | Wesley Aptekar-Cassels <me@wesleyac.com> | 2024-01-21 01:58:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 01:58:20 -0500 |
commit | 29784983b5018e429a276fd1cdfeeac8b0e431b9 (patch) | |
tree | fc7f6e0f1c2450d07c7377190ed4d65ee7c7a3cb /movement/template | |
parent | dcf167a8bf6f09d3068bd419bba9c92586c7cb04 (diff) | |
parent | e49a75b8ef48174270c87e58dd332faf2b99f8d8 (diff) | |
download | Sensor-Watch-29784983b5018e429a276fd1cdfeeac8b0e431b9.tar.gz Sensor-Watch-29784983b5018e429a276fd1cdfeeac8b0e431b9.tar.bz2 Sensor-Watch-29784983b5018e429a276fd1cdfeeac8b0e431b9.zip |
Merge branch 'main' into watch-face-solstice
Diffstat (limited to 'movement/template')
-rw-r--r-- | movement/template/template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/movement/template/template.c b/movement/template/template.c index e03db561..fe2723b8 100644 --- a/movement/template/template.c +++ b/movement/template/template.c @@ -28,6 +28,7 @@ void <#watch_face_name#>_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) { (void) settings; + (void) watch_face_index; if (*context_ptr == NULL) { *context_ptr = malloc(sizeof(<#watch_face_name#>_state_t)); memset(*context_ptr, 0, sizeof(<#watch_face_name#>_state_t)); |