bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f63cd63e5403c99a1b1678d4f36cd277f69a53e6
commit f63cd63e5403c99a1b1678d4f36cd277f69a53e6 Author: Marcel Hollerbach <[email protected]> Date: Mon Sep 19 13:00:36 2016 +0200 eo: fix headr to header if you enable EO_DEBUG you cannot build eo, since the field is called header not headr --- src/lib/eo/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index a7dc3ce..f2e9f31 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1708,7 +1708,7 @@ _efl_data_xunref_internal(_Eo_Object *obj, void *data, const _Eo_Object *ref_obj ((char *)data < (((char *) obj) + klass->obj_size))); if (!in_range) { - ERR("Data %p is not in the data range of the object %p (%s).", data, (Eo *)obj->headr.id, obj->klass->desc->name); + ERR("Data %p is not in the data range of the object %p (%s).", data, (Eo *)obj->header.id, obj->klass->desc->name); } #else (void) obj; --
