evas test - use correct type for ptr type tracking called

callback setup uses int but thecallback uses intptr_t ... which is...
wrong.
This commit is contained in:
Carsten Haitzler 2019-08-11 17:09:32 +01:00
parent 0a06c7b568
commit c4354dd38e
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
static void
_mouse_down_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
intptr_t *val = data;
int *val = data;
ck_assert_int_eq(*val, 0);
*val = 1;
}