From f4066b0ed6231c68fc6d14a62d12b1277c7f4b14 Mon Sep 17 00:00:00 2001 From: Nicholas Hughart Date: Fri, 19 Oct 2012 15:57:55 +0000 Subject: [PATCH] Make Eina amalgamation build again The eina_thread_init and eina_thread_shutdown functions have to return Eina_Bool to match other init/shutdown functions in Eina. The fact that this didn't break the normal build is interesting... SVN revision: 78258 --- legacy/eina/src/lib/eina_thread.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/legacy/eina/src/lib/eina_thread.c b/legacy/eina/src/lib/eina_thread.c index e0d438fddf..ca36b28599 100644 --- a/legacy/eina/src/lib/eina_thread.c +++ b/legacy/eina/src/lib/eina_thread.c @@ -300,12 +300,14 @@ eina_thread_join(Eina_Thread t) return PHJ(t); } -void +Eina_Bool eina_thread_init(void) { + return EINA_TRUE; } -void +Eina_Bool eina_thread_shutdown(void) { + return EINA_TRUE; }