summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 377427260a..45b6f05646 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -349,7 +349,7 @@ extern unsigned long mas_version_code;
349 349
350static struct event_queue mpeg_queue; 350static struct event_queue mpeg_queue;
351static char mpeg_stack[DEFAULT_STACK_SIZE + 0x1000]; 351static char mpeg_stack[DEFAULT_STACK_SIZE + 0x1000];
352static char mpeg_thread_name[] = "mpeg"; 352static const char mpeg_thread_name[] = "mpeg";
353 353
354static int mp3buflen; 354static int mp3buflen;
355static int mp3buf_write; 355static int mp3buf_write;
@@ -2637,7 +2637,7 @@ void mpeg_error_clear(void)
2637 2637
2638#ifdef SIMULATOR 2638#ifdef SIMULATOR
2639static char mpeg_stack[DEFAULT_STACK_SIZE]; 2639static char mpeg_stack[DEFAULT_STACK_SIZE];
2640static char mpeg_thread_name[] = "mpeg"; 2640static const char mpeg_thread_name[] = "mpeg";
2641static void mpeg_thread(void) 2641static void mpeg_thread(void)
2642{ 2642{
2643 struct mp3entry* id3; 2643 struct mp3entry* id3;