summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;