X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6399b037de5d22e37584d156b87f293dbfa16df7..a9c9083479c7a98cb890faad9d2f40e9a64ccd83:/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c diff --git a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c index 9ebf1f7fde..d4a4956cbd 100644 --- a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c +++ b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c @@ -1,3 +1,10 @@ +/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ +/* + * + * (C) 2012 by Argonne National Laboratory. + * See COPYRIGHT in top-level directory. + */ + #include #include #include @@ -10,7 +17,7 @@ int main(int argc, char *argv[]) { int i, type_size; MPI_Datatype type = MPI_DATATYPE_NULL; - int *buf = NULL; + char *buf = NULL; int wrank, wsize; MPI_Init(&argc, &argv); @@ -19,7 +26,7 @@ int main(int argc, char *argv[]) /* a random non-zero sized buffer */ #define NELEM (10) - buf = malloc(NELEM*sizeof(int)); + buf = malloc(NELEM * sizeof(int)); assert(buf!=NULL); for (i = 0; i < NELEM; i++) { @@ -40,6 +47,8 @@ int main(int argc, char *argv[]) assert(buf[i] == wrank * NELEM + i); } + free(buf); + MPI_Type_free(&type); MPI_Finalize();