From: navarrop Date: Wed, 23 Feb 2011 12:19:59 +0000 (+0000) Subject: Correctly use of xbt_die in java. X-Git-Tag: v3_9_90~569^2~19^2~198 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d7980c5c736e78a17e627d9b99ab71a3906fc111 Correctly use of xbt_die in java. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/contrib/trunk/simgrid-java@9706 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/jxbt_utilities.h b/src/jxbt_utilities.h index 08bd391873..a41194248e 100644 --- a/src/jxbt_utilities.h +++ b/src/jxbt_utilities.h @@ -54,7 +54,7 @@ jfieldID jxbt_get_sfield(JNIEnv * env, const char *classname, #define jxbt_check_res(fun, res, allowed_exceptions, detail) do {\ if (res != MSG_OK && res | allowed_exceptions) { \ - xbt_die(bprintf("%s failed with error code %d, which is not an allowed exception. Please fix me.",fun,res)); \ + xbt_die("%s failed with error code %d, which is not an allowed exception. Please fix me.",fun,res); \ } else if (res == MSG_HOST_FAILURE) { \ jxbt_throw_host_failure(env, detail); \ } else if (res == MSG_TRANSFER_FAILURE) { \