diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-08-03 19:22:56 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-03 19:22:56 +0000 |
commit | 9478cc6f8a1f5155131bb001ed76e5309bfc4951 (patch) | |
tree | 8453ecfa3ac88269986000eb432441df318cd04c /firmware/mpeg.c | |
parent | 2b0694c6944f2ea155291b62a00c11b89cd63914 (diff) |
More const policeing step 4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4983 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r-- | firmware/mpeg.c | 4 |
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; static struct event_queue mpeg_queue; static char mpeg_stack[DEFAULT_STACK_SIZE + 0x1000]; -static char mpeg_thread_name[] = "mpeg"; +static const char mpeg_thread_name[] = "mpeg"; static int mp3buflen; static int mp3buf_write; @@ -2637,7 +2637,7 @@ void mpeg_error_clear(void) #ifdef SIMULATOR static char mpeg_stack[DEFAULT_STACK_SIZE]; -static char mpeg_thread_name[] = "mpeg"; +static const char mpeg_thread_name[] = "mpeg"; static void mpeg_thread(void) { struct mp3entry* id3; |