Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / smpi / bcast / bcast_coll.c
index c9d898e391531f05918026eab3f41b998407d00f..bceaf4087c615f114d62b184a5c22c4cf44f445f 100644 (file)
@@ -23,7 +23,7 @@ int main(int argc, char **argv)
   for (i = 0; i < count; i++)
     values[i] = (0 == rank) ? 17 : 3;
 
-  status = MPI_Bcast(values, count, MPI_INT, 0, MPI_COMM_WORLD);
+  MPI_Bcast(values, count, MPI_INT, 0, MPI_COMM_WORLD);
 
   int good = 0;
   for (i = 0; i < count; i++)