voice_thread_init was left INIT_ATTR but is being called too late.

Must just remove that attribute for the moment which might fix a
problem or two.

Change-Id: I16bfdb63a526ca6fbae78a86e6293957ebe2fa41
This commit is contained in:
Michael Sevakis 2012-05-21 15:21:36 -04:00
parent 70876a8454
commit 545f41790b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ bool mp3_is_playing(void);
void voice_wait(void);
void voice_stop(void);
void voice_thread_init(void) INIT_ATTR;
void voice_thread_init(void);
#ifdef HAVE_PRIORITY_SCHEDULING
void voice_thread_set_priority(int priority);
#endif