hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=06507978251bed625dea66ab9568080c4abb05f0
commit 06507978251bed625dea66ab9568080c4abb05f0 Author: ChunEon Park <her...@hermet.pe.kr> Date: Sat May 31 14:43:48 2014 +0900 evas/blend: oops, missed a variable declaration. build error by this commit. aede29e2d4cd49c370b5225196fd267a712d3593 --- src/lib/evas/common/evas_op_blend/op_blend_pixel_color_neon.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/common/evas_op_blend/op_blend_pixel_color_neon.c b/src/lib/evas/common/evas_op_blend/op_blend_pixel_color_neon.c index a2f256c..c8fa546 100644 --- a/src/lib/evas/common/evas_op_blend/op_blend_pixel_color_neon.c +++ b/src/lib/evas/common/evas_op_blend/op_blend_pixel_color_neon.c @@ -9,9 +9,10 @@ static void _op_blend_p_c_dp_neon(DATA32 * __restrict s, DATA8 *m EINA_UNUSED, DATA32 c, DATA32 * __restrict d, int l) { /* Current this neon code is a little buggy, color blending won't be done - correctly. So leave the code depend on the compilier optimization. */ + correctly. So leave the code depend on the compilier optimization. */ #if 1 - int i = 0; + int i; + int alpha; for (i = 0; i < l; i++) { --