summaryrefslogtreecommitdiffstats
path: root/apps/voice_thread.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-05-21 15:21:36 -0400
committerMichael Sevakis <jethead71@rockbox.org>2012-05-21 15:21:36 -0400
commit545f41790bb7ea576ee5100436b6d8ca0c175fba (patch)
tree0bc92dd0584c1128b898bca5c10d61df31cd730c /apps/voice_thread.h
parent70876a8454b11d67bba9dd3c1f6dfff3129831ff (diff)
downloadrockbox-545f41790bb7ea576ee5100436b6d8ca0c175fba.tar.gz
rockbox-545f41790bb7ea576ee5100436b6d8ca0c175fba.zip
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.h2
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