From efe1aabe482bd253b4d029cc9654406128a09918 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Nov 2008 10:35:26 +0000 Subject: [PATCH] renamed dict_append_if_new2 to dict_append_if_new --- lib/as3/abc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/as3/abc.c b/lib/as3/abc.c index 3b72123..cfa16ad 100644 --- a/lib/as3/abc.c +++ b/lib/as3/abc.c @@ -901,13 +901,13 @@ int register_multiname(abc_file_t*pool, abc_multiname_t*n) if(!n) return 0; /* FIXME: might create duplicates */ - return dict_append_if_new2(pool->multinames, n->name, n); + return dict_append_if_new(pool->multinames, n->name, n); } int register_namespace(abc_file_t*pool, abc_namespace_t*ns) { /* FIXME: might create duplicates */ - return dict_append_if_new2(pool->namespaces, ns->name, ns); + return dict_append_if_new(pool->namespaces, ns->name, ns); } static inline abc_multiname_t*multiname_lookup(abc_file_t*pool, int i) -- 1.7.10.4