From: schnorr Date: Tue, 13 Apr 2010 16:19:44 +0000 (+0000) Subject: only way to know if a category is well declared is through the return code (1 on... X-Git-Tag: SVN~185 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f66b63e12575c8df0f87108083e194ff7fdf2332?hp=f924b8a615aa062dbac23bd8b7d7863fc045de4b only way to know if a category is well declared is through the return code (1 on problem, 0 is ok) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7556 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/instr/interface.c b/src/instr/interface.c index 61103f8a9e..38189a7cce 100644 --- a/src/instr/interface.c +++ b/src/instr/interface.c @@ -163,7 +163,6 @@ int TRACE_create_category (const char *category, } //check if category is created if (xbt_dict_get_or_null (created_categories, category)){ - INFO1 ("Category %s is already created", category); return 1; }