X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e99350b90a8c0e400db2f43e3093b70afdbd2aac..0ca1291c2f63ca6235f4b4885c48413a900aade4:/src/surf/surf_action.c diff --git a/src/surf/surf_action.c b/src/surf/surf_action.c index fc5b8d9363..ea4317b26b 100644 --- a/src/surf/surf_action.c +++ b/src/surf/surf_action.c @@ -66,7 +66,7 @@ static void surf_action_mallocator_reset_f(void* action) { void *surf_action_new(size_t size, double cost, surf_model_t model, int failed) { - xbt_assert2(size <= action_mallocator_allocated_size, + xbt_assert(size <= action_mallocator_allocated_size, "Cannot create a surf action of size %zu: the mallocator only provides actions of size %d", size, action_mallocator_allocated_size); @@ -129,7 +129,7 @@ void surf_action_state_set(surf_action_t action, e_surf_action_state_t state) { surf_action_state_t action_state = &(action->model_type->states); - XBT_IN2("(%p,%s)", action, surf_action_state_names[state]); + XBT_IN("(%p,%s)", action, surf_action_state_names[state]); xbt_swag_remove(action, action->state_set); if (state == SURF_ACTION_READY) @@ -145,7 +145,7 @@ void surf_action_state_set(surf_action_t action, if (action->state_set) xbt_swag_insert(action, action->state_set); - XBT_OUT; + XBT_OUT(); } void surf_action_data_set(surf_action_t action, void *data)