Eo: improve error message.

This commit is contained in:
Daniel Zaoui 2013-06-03 14:30:19 +03:00
parent 21d42be902
commit a435306974
1 changed files with 2 additions and 2 deletions

View File

@ -333,8 +333,8 @@ _eo_kls_itr_func_get(const _Eo_Class *cur_klass, Eo_Op op)
{ \
const _Eo_Class *op_klass = _eo_op_class_get(op); \
const char *_dom_name = (op_klass) ? op_klass->desc->name : NULL; \
ERR("in %s:%d: Can't find func for op 0x%x (%s:%s) for class '%s'. Aborting.", \
file, line, op, _dom_name, _eo_op_id_name_get(op), \
ERR("in %s:%d: Can't execute function %s:%s (op 0x%x) for class '%s'. Aborting.", \
file, line, _dom_name, _eo_op_id_name_get(op), op, \
(klass) ? klass->desc->name : NULL); \
} \
while (0)