diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-11-18 20:55:43 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-11-18 20:55:43 +0000 |
commit | 34e7fdbf37efbd24be11db9e53a99c738d96f755 (patch) | |
tree | cfbcb8429724ec921044c9fc5b3b4c1211fc07e0 | |
parent | 1a41c8afeefd4884a5369c79808c68b3514eec8b (diff) |
The voice thread needs a tad bit more stack.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15674 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/voice_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/voice_thread.c b/apps/voice_thread.c index c104fa5c7f..52d2c6ebfd 100644 --- a/apps/voice_thread.c +++ b/apps/voice_thread.c @@ -52,7 +52,7 @@ /* Voice thread variables */ static struct thread_entry *voice_thread_p = NULL; -static long voice_stack[0x740/sizeof(long)] IBSS_ATTR_VOICE_STACK; +static long voice_stack[0x7c0/sizeof(long)] IBSS_ATTR_VOICE_STACK; static const char voice_thread_name[] = "voice"; /* Voice thread synchronization objects */ |