Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SURF: Unify the types of models in a uniq s_surf_model_t (using an union) +reindent...
[simgrid.git] / src / xbt / set.c
index 62250a2..2f79281 100644 (file)
@@ -188,9 +188,9 @@ xbt_set_elm_t xbt_set_get_by_name(xbt_set_t set, const char *name)
  * \param name Name of the searched cell
  * \returns the data you're looking for, returns NULL if not found
  */
-xbt_set_elm_t xbt_set_get_by_name_or_null    (xbt_set_t     set,
-                                      const char     *name) {
-  DEBUG1("Lookup key %s",name);
+xbt_set_elm_t xbt_set_get_by_name_or_null(xbt_set_t set, const char *name)
+{
+  DEBUG1("Lookup key %s", name);
   return xbt_dict_get_or_null(set->dict, name);
 }