summaryrefslogtreecommitdiff
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
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
-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);
37void voice_wait(void); 37void voice_wait(void);
38void voice_stop(void); 38void voice_stop(void);
39 39
40void voice_thread_init(void) INIT_ATTR; 40void voice_thread_init(void);
41#ifdef HAVE_PRIORITY_SCHEDULING 41#ifdef HAVE_PRIORITY_SCHEDULING
42void voice_thread_set_priority(int priority); 42void voice_thread_set_priority(int priority);
43#endif 43#endif