From 545f41790bb7ea576ee5100436b6d8ca0c175fba Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Mon, 21 May 2012 15:21:36 -0400 Subject: [PATCH] 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 --- apps/voice_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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