From 6ae96d43ff2298489d2c496d91a406edeb013e81 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 26 Jul 2012 12:34:04 +0000 Subject: [PATCH] Eo: Make func override warning an error instead (prev commit). Make JackDanielZ happy... SVN revision: 74437 --- legacy/eobj/src/lib/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eobj/src/lib/eo.c b/legacy/eobj/src/lib/eo.c index ded5b32627..e635b8dd1a 100644 --- a/legacy/eobj/src/lib/eo.c +++ b/legacy/eobj/src/lib/eo.c @@ -171,7 +171,7 @@ _dich_func_set(Eo_Class *klass, Eo_Op op, eo_op_func_type func) { const Eo_Class *op_kls = _eo_op_class_get(op); const Eo_Op_Description *op_desc = _eo_op_id_desc_get(op); - WRN("Already set function for op %x (%s:%s). Overriding with func %p", + ERR("Already set function for op %x (%s:%s). Overriding with func %p", op, op_kls->desc->name, op_desc->name, func); }