diff options
| author | joeycastillo <joeycastillo@utexas.edu> | 2023-01-12 09:21:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-12 09:21:22 -0500 |
| commit | 4d987eb1f58dfe512f617b17772e89090cba6290 (patch) | |
| tree | 27f591d9646f49f73ef9a2f044592d0e6decea00 | |
| parent | 7c85bc5a8179ff2dc872aafda27a0a70104c4ecf (diff) | |
| parent | c029e40a9a21ba79f29952f694801c38ad4ace80 (diff) | |
| download | Sensor-Watch-4d987eb1f58dfe512f617b17772e89090cba6290.tar.gz Sensor-Watch-4d987eb1f58dfe512f617b17772e89090cba6290.tar.bz2 Sensor-Watch-4d987eb1f58dfe512f617b17772e89090cba6290.zip | |
Merge pull request #174 from neutralinsomniac/tarot-fix-compiler-warning
tarot: fix compiler warning
| -rw-r--r-- | movement/watch_faces/complication/tarot_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/tarot_face.c b/movement/watch_faces/complication/tarot_face.c index 04c55360..e583763c 100644 --- a/movement/watch_faces/complication/tarot_face.c +++ b/movement/watch_faces/complication/tarot_face.c @@ -75,7 +75,7 @@ static void init_deck(tarot_state_t *state) { } static void tarot_display(tarot_state_t *state) { - char buf[9]; + char buf[10]; uint8_t card; bool flipped; |
