From a13724139562287d75dcbc153bdeae0877842f43 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 3 Jun 2012 08:42:18 +0000 Subject: [PATCH] Eo: print an error when trying to delete a non-existent callback. SVN revision: 71658 --- legacy/eobj/lib/eo_base_class.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/eobj/lib/eo_base_class.c b/legacy/eobj/lib/eo_base_class.c index 6370425..1559968 100644 --- a/legacy/eobj/lib/eo_base_class.c +++ b/legacy/eobj/lib/eo_base_class.c @@ -332,6 +332,8 @@ _ev_cb_del(Eo *obj, void *class_data, va_list *list) return; } } + + ERR("Callback of object %p with function %p and data %p not found.", obj, func, user_data); } static void -- 2.7.4