stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c840162f0967d6c9c255d1b21ea092826f197685
commit c840162f0967d6c9c255d1b21ea092826f197685 Author: Stefan Schmidt <[email protected]> Date: Mon Jun 6 14:49:33 2016 +0200 tests: evas: remove unused variable We set it but never going to use it afterwards. We already tests the efl_gfx_buffer_colorspace_get() elsewhere in this tests so we can ignore it for now until we need it and bring it back together with a user. --- src/tests/evas/evas_test_image.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tests/evas/evas_test_image.c b/src/tests/evas/evas_test_image.c index 7f90754..59d8e10 100644 --- a/src/tests/evas/evas_test_image.c +++ b/src/tests/evas/evas_test_image.c @@ -749,7 +749,6 @@ START_TEST(evas_object_image_map_unmap) close(fd); if (efl_file_save(o, tmp, NULL, NULL)) { - Efl_Gfx_Colorspace cs2; int w2, h2, stride2, len2; uint32_t *data2, *orig; int x, y; @@ -757,7 +756,6 @@ START_TEST(evas_object_image_map_unmap) o2 = eo_add(EFL_CANVAS_IMAGE_CLASS, e); efl_file_set(o2, tmp, NULL); efl_gfx_view_size_get(o, &w2, &h2); - cs2 = efl_gfx_buffer_colorspace_get(o2); // unlink now to not leave any crap after failing the test unlink(tmp); --
