summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortasn <tasn>2012-07-26 13:15:28 +0000
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>2012-07-26 13:15:28 +0000
commit59cabd75a82005129d4cdaef29848f2cf900a747 (patch)
tree88a578a55a4e160d2a974a0c1f1e6874e44cc86c
parentb1f332482de6a71e823a597ade47a868013ea8b7 (diff)
downloadeobj-59cabd75a82005129d4cdaef29848f2cf900a747.tar.gz
eobj-59cabd75a82005129d4cdaef29848f2cf900a747.tar.bz2
eobj-59cabd75a82005129d4cdaef29848f2cf900a747.zip
Eo: Changed ops prints to be DOMAIN:OP_NAME. Easier to follow.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eobj@74442 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
-rw-r--r--src/lib/eo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/eo.c b/src/lib/eo.c
index e635b8d..2758044 100644
--- a/src/lib/eo.c
+++ b/src/lib/eo.c
@@ -320,8 +320,8 @@ _eo_kls_itr_func_get(Eo_Kls_Itr *mro_itr, 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("Can't find func for op %x ('%s' of domain '%s') for class '%s'. Aborting.", \
- op, _eo_op_id_name_get(op), _dom_name, \
+ ERR("Can't find func for op %x (%s:%s) for class '%s'. Aborting.", \
+ op, _dom_name, _eo_op_id_name_get(op), \
(klass) ? klass->desc->name : NULL); \
} \
while (0)
@@ -734,11 +734,11 @@ eo_class_funcs_set(Eo_Class *klass, const Eo_Op_Func_Description *func_descs)
}
else
{
- ERR("Set function's op type (%x) is different than the one in the op description (%d) for op '%s' in class '%s'. Func index: %d",
+ ERR("Set function's op type (%x) is different than the one in the op description (%d) for op '%s:%s'. Func index: %d",
itr->op_type,
(op_desc) ? op_desc->op_type : EO_OP_TYPE_REGULAR,
- (op_desc) ? op_desc->name : NULL,
klass->desc->name,
+ (op_desc) ? op_desc->name : NULL,
itr - func_descs);
}
}