Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix warnings about unused variables.
[simgrid.git] / teshsuite / smpi / mpich3-test / coll / allgatherv4.c
index 0cb30d0..60bf0a4 100644 (file)
@@ -127,7 +127,8 @@ fn_exit:
 void comm_tests(MPI_Comm comm)
 {
     int comm_size, comm_rank;
-    double rtime, max_time;
+    double rtime = rtime;       /* stop warning about unused variable */
+    double max_time;
     long long msg_size;
 
     MPI_Comm_size(comm, &comm_size);