X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29df986cd461330e1e590bd3bc9507a3d0ce2dc6..d339999d6e0c1d912a113b9f9ebd04b94a8640a2:/teshsuite/smpi/type-struct/type-struct.c?ds=sidebyside diff --git a/teshsuite/smpi/type-struct/type-struct.c b/teshsuite/smpi/type-struct/type-struct.c index 6e24484110..2a4b38dba7 100644 --- a/teshsuite/smpi/type-struct/type-struct.c +++ b/teshsuite/smpi/type-struct/type-struct.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2014. The SimGrid Team. +/* Copyright (c) 2012-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -10,7 +10,12 @@ int main(int argc, char **argv) { int rank; - struct { int a;int c; double b;int tab[2][3];} value; + struct { + int a; + int c; + double b; + int tab[2][3]; + } value = {0}; MPI_Datatype mystruct; int blocklens[3]; MPI_Aint indices[3]; @@ -21,7 +26,7 @@ int main(int argc, char **argv) MPI_Comm_rank( MPI_COMM_WORLD, &rank ); - int tab[2][3]={{1*rank,2*rank,3*rank},{7*rank,8*rank,9*rank}}; + int tab[2][3]={{1*rank,2*rank,3*rank},{7*rank,8*rank,9*rank}}; MPI_Type_contiguous(3, MPI_INT, &type2); MPI_Type_commit(&type2); @@ -50,7 +55,7 @@ int main(int argc, char **argv) value.b=8.0; }else{ value.a=10000; - value.b=5.0; + value.b=5.0; } MPI_Bcast( &value, 1, mystruct, 0, MPI_COMM_WORLD );