From 2f17e329e19084133ea3fae7f06054b976f5c383 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 9 Apr 2013 10:08:44 +0200 Subject: [PATCH] avoid unitialized use --- teshsuite/smpi/mpich-test/env/gtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teshsuite/smpi/mpich-test/env/gtime.c b/teshsuite/smpi/mpich-test/env/gtime.c index e755aefbc3..4e3d33f280 100644 --- a/teshsuite/smpi/mpich-test/env/gtime.c +++ b/teshsuite/smpi/mpich-test/env/gtime.c @@ -80,7 +80,7 @@ int main( int argc, char **argv ) { int err = 0; void *v; - int flag; + int flag=0; int vval; int rank; double t1; -- 2.20.1