From: Takahiro Hirofuchi Date: Thu, 31 Jan 2013 22:10:12 +0000 (+0100) Subject: fix xbt_lib_unset X-Git-Tag: v3_11_beta~297^2^2~114^2~3 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/faf497b1ecc3452e93f71edbab5e766cf0b53f0f fix xbt_lib_unset --- diff --git a/src/xbt/lib.c b/src/xbt/lib.c index e8f6a21cd2..a76ca15468 100644 --- a/src/xbt/lib.c +++ b/src/xbt/lib.c @@ -98,7 +98,7 @@ void xbt_lib_unset(xbt_lib_t lib, const char *key, int level) } /* there is no element at any level, so delete the key */ - xbt_dict_remove(lib->dict, key) + xbt_dict_remove(lib->dict, key); } void *xbt_lib_get_or_null(xbt_lib_t lib, const char *key, int level)