diff options
author | Aidan MacDonald <amachronic@protonmail.com> | 2022-10-02 13:57:52 +0100 |
---|---|---|
committer | Aidan MacDonald <amachronic@protonmail.com> | 2022-10-02 13:57:52 +0100 |
commit | c1d75a6bcb30260eba288f643261c4a57959f45f (patch) | |
tree | b15893c0281b545462a0e118ec43edda3c374ee0 | |
parent | 5b0506e9de356f915138711b62f3e414a8c1b2bb (diff) | |
download | rockbox-c1d75a6bcb.tar.gz rockbox-c1d75a6bcb.zip |
Fix yellow from 5b0506e9de
Change-Id: I6391a6f13e64fad5c54dd29d8d696a08d45362dc
-rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 9c911eea4d..1abeac2622 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -870,7 +870,7 @@ static int tsc2100debug_action_callback(int action, struct gui_synclist *lists) if (action == ACTION_STD_OK) { *page = (*page+1)%3; - snprintf(lists->title, 32, "tsc2100 registers - Page %d", *page); + snprintf((char*)lists->title, 32, "tsc2100 registers - Page %d", *page); return ACTION_REDRAW; } return action; |