Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[INSTR] Move to C++ and use templates
[simgrid.git] / src / instr / instr_paje_values.cpp
index a45729b..50de8f8 100644 (file)
@@ -50,13 +50,10 @@ val_t PJ_value_get (const char *name, type_t father)
   }
 
   if (father->kind == TYPE_VARIABLE)
-    THROWF(tracing_error, 0,
-           "variables can't have different values (%s)", father->name);
+    THROWF(tracing_error, 0, "variables can't have different values (%s)", father->name);
   val_t ret = (val_t)xbt_dict_get_or_null (father->values, name);
   if (ret == NULL) {
-    THROWF(tracing_error, 2,
-           "value with name (%s) not found in father type (%s)",
-           name, father->name);
+    THROWF(tracing_error, 2, "value with name (%s) not found in father type (%s)", name, father->name);
   }
   return ret;
 }