X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5045b9c72e64d6dedf60d8bf51038c3f05d874e2..d5b29830df70e823202e384a7655e4371193ecd7:/teshsuite/smpi/isp/umpire/op-no-error.c diff --git a/teshsuite/smpi/isp/umpire/op-no-error.c b/teshsuite/smpi/isp/umpire/op-no-error.c index 6f4cf31869..41d5864c04 100644 --- a/teshsuite/smpi/isp/umpire/op-no-error.c +++ b/teshsuite/smpi/isp/umpire/op-no-error.c @@ -20,8 +20,8 @@ typedef struct { double real, imag; } Complex; -void -myProd (void *inp, void *inoutp, int *len, MPI_Datatype *dptr) +void +myProd (void *inp, void *inoutp, int *len, MPI_Datatype *dptr) { int i; Complex c; @@ -61,16 +61,16 @@ main (int argc, char **argv) MPI_Barrier (comm); - for (i = 0; i < OP_COUNT; i++) + for (i = 0; i < OP_COUNT; i++) MPI_Op_create (myProd, 1, &newop[i]); - for (i = 0; i < OP_COUNT; i++) + for (i = 0; i < OP_COUNT; i++) MPI_Op_free (&newop[i]); MPI_Barrier (comm); /* now with an alias... */ - for (i = 0; i < OP_COUNT; i++) + for (i = 0; i < OP_COUNT; i++) MPI_Op_create (myProd, 1, &newop[i]); for (i = 0; i < OP_COUNT; i++) {