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] / examples / smpi / bcast.c
index ba172dd..72ad419 100644 (file)
@@ -28,7 +28,7 @@ int main(int argc, char **argv)
   }
   MPI_Bcast(&value, 1, MPI_INT, 0, MPI_COMM_WORLD);
   if (value != 17) {
-     printf("node %d has value %d after broadcast\n", rank, value);
+    printf("node %d has value %d after broadcast\n", rank, value);
   }
 
   MPI_Barrier(MPI_COMM_WORLD);