ecore_coroutine: Silence warning in clang
authorDaniel Willmann <d.willmann@samsung.com>
Tue, 19 Mar 2013 15:46:19 +0000 (15:46 +0000)
committerDaniel Willmann <d.willmann@samsung.com>
Tue, 19 Mar 2013 17:00:33 +0000 (17:00 +0000)
We can't get more const than const int

Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
src/lib/ecore/ecore_coroutine.c

index b6fc362..e224556 100644 (file)
@@ -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