From 89280385b40b51ba9df6e14ec4c5282c01308719 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 1 Mar 2019 16:21:14 -0800 Subject: [PATCH] eo: improve error message by giving an idea where the error come from. Reviewed-by: Vitor Sousa da Silva Differential Revision: https://phab.enlightenment.org/D8090 --- src/lib/eo/eo_base_class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo_base_class.c b/src/lib/eo/eo_base_class.c index 9e33e6e3a0..2dc5efcec5 100644 --- a/src/lib/eo/eo_base_class.c +++ b/src/lib/eo/eo_base_class.c @@ -679,7 +679,7 @@ efl_del(const Eo *obj) } else { - ERR("Calling efl_del on an object with no parent is not advised any more."); + ERR("Calling efl_del on object %s with no parent is not advised any more.", efl_debug_name_get(obj)); efl_unref(obj); } _efl_unref(oid);