X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a99910faad9adbbc01f4e4cccb504a53bed1af6..cdf6a962eb4e88efbed3df9c41343adabcf09e6c:/teshsuite/smpi/pt2pt-dsend/pt2pt-dsend.c?ds=sidebyside diff --git a/teshsuite/smpi/pt2pt-dsend/pt2pt-dsend.c b/teshsuite/smpi/pt2pt-dsend/pt2pt-dsend.c index 84217e9ea9..0a76bed2fb 100644 --- a/teshsuite/smpi/pt2pt-dsend/pt2pt-dsend.c +++ b/teshsuite/smpi/pt2pt-dsend/pt2pt-dsend.c @@ -13,15 +13,13 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(dsend,"the dsend test"); static void test_opts(int* argc, char **argv[]){ int found = 0; - int ret; int option_index = 0; static struct option long_options[] = { - {"long", no_argument, 0, 0 }, + {(char*)"long", no_argument, 0, 0 }, {0, 0, 0, 0 } }; while (1) { - ret = getopt_long(*argc, *argv, "s", - long_options, &option_index); + int ret = getopt_long(*argc, *argv, "s", long_options, &option_index); if(ret==-1) break;