From a32870c424e65e80b0d49419efb9fe0d9949c641 Mon Sep 17 00:00:00 2001 From: Daniel Willmann Date: Tue, 19 Mar 2013 15:46:19 +0000 Subject: [PATCH] ecore_coroutine: Silence warning in clang We can't get more const than const int Signed-off-by: Daniel Willmann --- src/lib/ecore/ecore_coroutine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/ecore_coroutine.c b/src/lib/ecore/ecore_coroutine.c index b6fc362619..e224556fff 100644 --- a/src/lib/ecore/ecore_coroutine.c +++ b/src/lib/ecore/ecore_coroutine.c @@ -68,9 +68,9 @@ struct _Ecore_Coroutine }; #ifdef __x86_64__ -static const int const _ecore_coroutine_default_stack_size = 16 * 1024; +static const int _ecore_coroutine_default_stack_size = 16 * 1024; #else -static const int const _ecore_coroutine_default_stack_size = 12 * 1024; +static const int _ecore_coroutine_default_stack_size = 12 * 1024; #endif static void