Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix string format (variable changed to unsigned long recently)
[simgrid.git] / testsuite / xbt / graphxml_usage.c
index 61ed6d5..3930ca7 100644 (file)
@@ -115,7 +115,7 @@ void test(char *graph_file)
     sorted = xbt_graph_topo_sort(graph);
     for (i = 0; i < n; i++) {
       if (sorted[i]) {
-       INFO3("sorted[%d] = %s (%p)", i, node_name(sorted[i]), sorted[i]);
+       INFO3("sorted[%lu] = %s (%p)", i, node_name(sorted[i]), sorted[i]);
       }
     }
     free(sorted);