From e96576cbc398144237ceb63678eb05ccc1e7e5f7 Mon Sep 17 00:00:00 2001 From: Tae-Hwan Kim Date: Mon, 3 Nov 2014 20:27:56 +0900 Subject: [PATCH] evas: Use Eina_Bool Summary: Use EINA_TRUE/EINA_FALSE instead of 1, 0 Reviewers: raster, cedric, Hermet Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1633 --- src/lib/evas/canvas/evas_object_image.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 05e5fb8e55..fb0fc3e09d 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -1579,7 +1579,7 @@ _evas_image_pixels_import(Eo *eo_obj, Evas_Image_Data *o, Evas_Pixel_Import_Sour Evas_Object_Protected_Data *obj = eo_data_scope_get(eo_obj, EVAS_OBJECT_CLASS); _evas_object_image_cleanup(eo_obj, obj, o); - if ((pixels->w != o->cur->image.w) || (pixels->h != o->cur->image.h)) return 0; + if ((pixels->w != o->cur->image.w) || (pixels->h != o->cur->image.h)) return EINA_FALSE; switch (pixels->format) { @@ -1636,10 +1636,10 @@ _evas_image_pixels_import(Eo *eo_obj, Evas_Image_Data *o, Evas_Pixel_Import_Sour } break; default: - return 0; + return EINA_FALSE; break; } - return 1; + return EINA_TRUE; } EOLIAN static void