summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-09-01 23:48:57 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2013-09-01 23:48:57 +0200
commit0ae42ba00b5fa3960e5eb4de08a88f30c61e8560 (patch)
tree8f3ff564f616900aaee2a0f84ec9a158018f06e3
parent3e87796a7e1bd89c2c8a57ec7376a1923179ed25 (diff)
downloadefl-0ae42ba00b5fa3960e5eb4de08a88f30c61e8560.tar.gz
eo2: eo2_call_resolve_internal support undef HAVE_EO_ID
-rw-r--r--src/lib/eo/eo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index f069b266e7..0b22a7b86a 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -454,7 +454,7 @@ eo2_call_resolve_internal(const Eo_Class *klass_id, const Eo_Op op, Eo2_Op_Call_
ERR("you called a pure virtual func");
return EINA_FALSE;
}
- call->klass_id = (Eo_Class *) klass->class_id;
+ call->klass_id = _eo_class_id_get(klass);
call->obj_id = fptr->obj_id;
call->func = func->func;