summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-11-12 07:15:13 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-11-12 07:15:13 -0500
commit30ec10c790dd09f1eb681312093e945683ec643a (patch)
tree6825cffb4873fc8a798dddb71fb66b7b04648305
parentc756a8a89d6970090b060a179dcabb93a67d8f21 (diff)
downloadrockbox-30ec10c790.tar.gz
rockbox-30ec10c790.zip
splash.c Fix yellow const char
Change-Id: Iac4ab74d9fb7a290f44ae53a1865ec65b9008c43
-rw-r--r--apps/gui/splash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/splash.c b/apps/gui/splash.c
index 3f361f5a04..65c3ad8c13 100644
--- a/apps/gui/splash.c
+++ b/apps/gui/splash.c
@@ -48,9 +48,9 @@ static bool splash_internal(struct screen * screen, const char *fmt, va_list ap,
const char *str;
size_t len;
} lines[MAXLINES];
- char *next;
- char *lastbreak = NULL;
- char *store = NULL;
+ const char *next;
+ const char *lastbreak = NULL;
+ const char *store = NULL;
int line = 0;
int x = 0;
int y, i;