Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put back some fix for a warning
authordegomme <augustin.degomme@unibas.ch>
Fri, 5 Feb 2016 15:02:50 +0000 (16:02 +0100)
committerdegomme <augustin.degomme@unibas.ch>
Fri, 5 Feb 2016 15:02:50 +0000 (16:02 +0100)
teshsuite/smpi/mpich3-test/coll/allgatherv4.c

index d14e974..39ad856 100644 (file)
@@ -108,7 +108,8 @@ int main(int argc, char **argv)
 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);
     MPI_Comm_rank(comm, &comm_rank);