Wrong to declare "ret" as Eina_Bool and than cast it to an int.

pointer.inside is unsigned char.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 77615
This commit is contained in:
Christopher Michael 2012-10-09 07:35:08 +00:00 committed by Christopher Michael
parent 2f4abd93bc
commit 16e6b9fce5
1 changed files with 1 additions and 1 deletions

View File

@ -776,7 +776,7 @@ _canvas_pointer_inside_get(Eo *eo_e EINA_UNUSED, void *_pd, va_list *list)
Eina_Bool *ret = va_arg(*list, Eina_Bool *);
const Evas_Public_Data *e = _pd;
*ret = (int)e->pointer.inside;
*ret = e->pointer.inside;
}
EAPI void