Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] graph configuration file for triva no longer needs categories to be in p...
[simgrid.git] / src / instr / instr_config.c
index 6b8eaf6..851ca3d 100644 (file)
@@ -478,7 +478,7 @@ void TRACE_generate_triva_cat_conf (void)
         "      size = power;\n"
         "      values = (");
     xbt_dict_foreach(created_categories,cursor,key,data) {
-      fprintf(file, "p%s, ",key);
+      fprintf(file, "%s, ",key);
     }
     fprintf (file,
         ");\n"
@@ -494,7 +494,7 @@ void TRACE_generate_triva_cat_conf (void)
         "      size = bandwidth;\n"
         "      values = (");
     xbt_dict_foreach(created_categories,cursor,key,data) {
-      fprintf(file, "b%s, ",key);
+      fprintf(file, "%s, ",key);
     }
     fprintf (file,
         ");\n"