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 89255a7..3930ca7 100644 (file)
@@ -6,6 +6,15 @@
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
+#ifdef __BORLANDC__
+ #pragma hdrstop
+ #endif
+#include <stdio.h>
+
+#ifdef _MSC_VER
+#define snprintf       _snprintf
+#endif
 
 #include "xbt/module.h"
 #include "xbt/sysdep.h"
@@ -40,7 +49,7 @@ void test(char *graph_file)
   int test_shortest_paths = 1;
   int test_topo_sort = 1;
 
-  int i, j;
+  unsigned long i, j;
   unsigned long n;
 
   xbt_dynar_t edges = NULL;
@@ -106,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);
@@ -147,6 +156,10 @@ void test(char *graph_file)
   xbt_graph_free_graph(graph, free_label, NULL, NULL);
 }
 
+#ifdef __BORLANDC__
+#pragma argsused
+#endif 
+
 int main(int argc, char **argv) {
   xbt_init(&argc, argv);
   if (argc == 1) {