summaryrefslogtreecommitdiff
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-30ec10c790dd09f1eb681312093e945683ec643a.tar.gz
rockbox-30ec10c790dd09f1eb681312093e945683ec643a.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,
48 const char *str; 48 const char *str;
49 size_t len; 49 size_t len;
50 } lines[MAXLINES]; 50 } lines[MAXLINES];
51 char *next; 51 const char *next;
52 char *lastbreak = NULL; 52 const char *lastbreak = NULL;
53 char *store = NULL; 53 const char *store = NULL;
54 int line = 0; 54 int line = 0;
55 int x = 0; 55 int x = 0;
56 int y, i; 56 int y, i;