From 50d5f50589b41cb0876f9b36d673ee38e2419085 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 15 May 2016 23:46:03 +0900 Subject: [PATCH] evas - fix warning comparing agianst wrong enum fixed enum compare due to efl intefaces changes. --- src/lib/evas/canvas/evas_object_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 5b309ddc4f..bb192b9868 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -480,7 +480,7 @@ _evas_image_eo_base_dbg_info_get(Eo *eo_obj, Evas_Image_Data *o, Eo_Dbg_Info *ro EO_DBG_INFO_APPEND(group, "Source", EINA_VALUE_TYPE_UINT64, (uint64_t) (uintptr_t) evas_object_image_source_get(eo_obj)); - if (efl_image_load_error_get(eo_obj) != EVAS_LOAD_ERROR_NONE) + if (efl_image_load_error_get(eo_obj) != EFL_IMAGE_LOAD_ERROR_NONE) { Evas_Load_Error error = EVAS_LOAD_ERROR_GENERIC; error = (Evas_Load_Error) _evas_image_load_error_get(eo_obj);