X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/276b2d9b83a3e3afcd449fb53a2dd8d662070036..0c13871d73e933c1847faf8debea7b7745a3ff44:/testsuite/xbt/parmap_bench.c diff --git a/testsuite/xbt/parmap_bench.c b/testsuite/xbt/parmap_bench.c index 112fbae788..d63bfc3fe4 100644 --- a/testsuite/xbt/parmap_bench.c +++ b/testsuite/xbt/parmap_bench.c @@ -3,7 +3,7 @@ #include #include #include -#include /* HAVE_FUTEX_H */ +#include /* HAVE_FUTEX_H */ #include "xbt/xbt_os_time.h" #define MODES_DEFAULT 0x7 @@ -30,7 +30,7 @@ static const char *parmap_mode_name(e_xbt_parmap_mode_t mode) snprintf(name, sizeof name, "DEFAULT"); break; default: - snprintf(name, sizeof name, "UNKNOWN(%d)", mode); + snprintf(name, sizeof name, "UNKNOWN(%d)", (int)mode); break; } return name; @@ -180,7 +180,7 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } if (argc == 3) - modes = atoi(argv[2]); + modes = strtol(argv[2], NULL, 0); printf("Parmap benchmark with %d workers (modes = %#x)...\n\n", nthreads, modes);