From f06042dba147e46cb590701eb32e56b287becce8 Mon Sep 17 00:00:00 2001 From: degomme Date: Fri, 5 Feb 2016 16:02:50 +0100 Subject: [PATCH] put back some fix for a warning --- teshsuite/smpi/mpich3-test/coll/allgatherv4.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teshsuite/smpi/mpich3-test/coll/allgatherv4.c b/teshsuite/smpi/mpich3-test/coll/allgatherv4.c index d14e974eea..39ad8560ee 100644 --- a/teshsuite/smpi/mpich3-test/coll/allgatherv4.c +++ b/teshsuite/smpi/mpich3-test/coll/allgatherv4.c @@ -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); -- 2.20.1