X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/839ca861fcbfe4230637ffc30766445cc7b4918f..2a4fb0f73d26c846e4c32c563d51a0e2d449da3d:/teshsuite/smpi/mpich3-test/datatype/typefree.c diff --git a/teshsuite/smpi/mpich3-test/datatype/typefree.c b/teshsuite/smpi/mpich3-test/datatype/typefree.c index 83a09ddb08..cb569417be 100644 --- a/teshsuite/smpi/mpich3-test/datatype/typefree.c +++ b/teshsuite/smpi/mpich3-test/datatype/typefree.c @@ -21,15 +21,15 @@ * to turn on MPICH's internal memory checking. */ -int main( int argc, char *argv[] ) +int main(int argc, char *argv[]) { int errs = 0; MPI_Datatype type; - MTest_Init( &argc, &argv ); - MPI_Type_dup( MPI_INT, &type ); - MPI_Type_free( &type ); - MTest_Finalize( errs ); + MTest_Init(&argc, &argv); + MPI_Type_dup(MPI_INT, &type); + MPI_Type_free(&type); + MTest_Finalize(errs); MPI_Finalize(); return 0; }