X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e9c0448c6566825b170b98ecff716b098bda10e..01cfa7276bea34f747662c55a1ce2f2f7d38c1c6:/teshsuite/smpi/mpich3-test/init/exitst1.c diff --git a/teshsuite/smpi/mpich3-test/init/exitst1.c b/teshsuite/smpi/mpich3-test/init/exitst1.c index 3ea4e46d85..85279f265d 100644 --- a/teshsuite/smpi/mpich3-test/init/exitst1.c +++ b/teshsuite/smpi/mpich3-test/init/exitst1.c @@ -5,13 +5,13 @@ */ #include "mpi.h" -/* - * This is a special test to check that mpiexec handles zero/non-zero +/* + * This is a special test to check that mpiexec handles zero/non-zero * return status from an application */ -int main( int argc, char *argv[] ) +int main(int argc, char *argv[]) { - MPI_Init( 0, 0 ); - MPI_Finalize( ); + MPI_Init(&argc, &argv); + MPI_Finalize(); return 1; }