X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d5b29830df70e823202e384a7655e4371193ecd7..1e09e1421647408f991d54848b90d9404e9154f6:/teshsuite/smpi/coll-bcast/coll-bcast.c diff --git a/teshsuite/smpi/coll-bcast/coll-bcast.c b/teshsuite/smpi/coll-bcast/coll-bcast.c index e8aeaecc0a..a53771ad4c 100644 --- a/teshsuite/smpi/coll-bcast/coll-bcast.c +++ b/teshsuite/smpi/coll-bcast/coll-bcast.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2013-2014. The SimGrid Team. +/* Copyright (c) 2009, 2013-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -46,11 +46,9 @@ int main(int argc, char **argv) if (values[i]==17) good++; printf("[%d] number of values equals to 17: %d\n", rank, good); - if (rank == 0) { - if (status != MPI_SUCCESS) { - printf("bcast returned %d\n", status); - fflush(stdout); - } + if (rank == 0 && status != MPI_SUCCESS) { + printf("bcast returned %d\n", status); + fflush(stdout); } xbt_free(values); MPI_Finalize();