From 786c2b749b1f353ff702bb5a1a22237df50c0593 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 10 Jun 2012 14:13:30 +0000 Subject: [PATCH] Eo: Fixed error message. SVN revision: 71902 --- legacy/eobj/lib/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eobj/lib/eo.c b/legacy/eobj/lib/eo.c index e67a917d69..91a90a7b16 100644 --- a/legacy/eobj/lib/eo.c +++ b/legacy/eobj/lib/eo.c @@ -1134,7 +1134,7 @@ eo_add(const Eo_Class *klass, Eo *parent) if (!obj->condtor_done) { const Eo_Class *cur_klass = _eo_kls_itr_get(&obj->mro_itr); - ERR("Object of class '%s' - Not all of the object constructors have been executed, last destructor was of class: '%s'", klass->desc->name, cur_klass->desc->name); + ERR("Object of class '%s' - Not all of the object constructors have been executed, last constructor was of class: '%s'", klass->desc->name, cur_klass->desc->name); goto fail; } _eo_kls_itr_end(&obj->mro_itr, &prev_state);