Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill trailing whitespaces in teshsuite/smpi/{isp,mpich3-test}.
[simgrid.git] / teshsuite / smpi / isp / umpire / bcast-deadlock.c
index 6b90e86..66e7c38 100644 (file)
@@ -25,15 +25,15 @@ main (int argc, char **argv)
 
   if (rank == 0) {
     memset (buf0, 0, buf_size*sizeof(int));
-    MPI_Bcast (buf0, buf_size, MPI_INT, 1, MPI_COMM_WORLD);    
-    MPI_Bcast (buf0, buf_size, MPI_INT, 0, MPI_COMM_WORLD);    
+    MPI_Bcast (buf0, buf_size, MPI_INT, 1, MPI_COMM_WORLD);
+    MPI_Bcast (buf0, buf_size, MPI_INT, 0, MPI_COMM_WORLD);
   }
   else {
     if (rank == 1)
       memset (buf1, 1, buf_size*sizeof(int));
 
-    MPI_Bcast (buf0, buf_size, MPI_INT, 0, MPI_COMM_WORLD);    
-    MPI_Bcast (buf0, buf_size, MPI_INT, 1, MPI_COMM_WORLD);    
+    MPI_Bcast (buf0, buf_size, MPI_INT, 0, MPI_COMM_WORLD);
+    MPI_Bcast (buf0, buf_size, MPI_INT, 1, MPI_COMM_WORLD);
   }
 
   MPI_Finalize ();