diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-05-21 15:21:36 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-05-21 15:21:36 -0400 |
commit | 545f41790bb7ea576ee5100436b6d8ca0c175fba (patch) | |
tree | 0bc92dd0584c1128b898bca5c10d61df31cd730c /apps/voice_thread.h | |
parent | 70876a8454b11d67bba9dd3c1f6dfff3129831ff (diff) |
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
Diffstat (limited to 'apps/voice_thread.h')
-rw-r--r-- | apps/voice_thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/voice_thread.h b/apps/voice_thread.h index 64c20c1e8d..8a17ee09e3 100644 --- a/apps/voice_thread.h +++ b/apps/voice_thread.h @@ -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 |