X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0211260dc138fdd07d6d25a35228679e1089eaa7..3af9dcb5714db015a7038a58701b2b453f52c6ca:/src/xbt/lib.c?ds=sidebyside diff --git a/src/xbt/lib.c b/src/xbt/lib.c index 3dfdca5b46..572c303d5c 100644 --- a/src/xbt/lib.c +++ b/src/xbt/lib.c @@ -1,6 +1,6 @@ /* lib - a generic library, variation over dictionary */ -/* Copyright (c) 2011. The SimGrid Team. +/* Copyright (c) 2011, 2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -83,7 +83,6 @@ void xbt_lib_unset(xbt_lib_t lib, const char *key, int level, int invoke_callbac if (!obj) { XBT_WARN("no key %s at level %d", key, level); - return; } else { XBT_DEBUG("Remove %p of key %s at level %d", obj, key, level); if (invoke_callback) @@ -91,7 +90,7 @@ void xbt_lib_unset(xbt_lib_t lib, const char *key, int level, int invoke_callbac elts[level] = NULL; } - /* check if there are elements of this key */ + /* check if there still remains any elements of this key */ int i; for (i = 0; i < lib->levels; i++) { if (elts[i] != NULL)