From 580a7a108cbdb8c5d65cfe5055caa11cb93246ea Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 25 Jan 2007 17:22:01 +0000 Subject: [PATCH] Fix a compiler warning. This commit was SVN r13310. --- orte/mca/pls/tm/pls_tm_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/pls/tm/pls_tm_module.c b/orte/mca/pls/tm/pls_tm_module.c index d9973f3731..5566ccc38a 100644 --- a/orte/mca/pls/tm/pls_tm_module.c +++ b/orte/mca/pls/tm/pls_tm_module.c @@ -148,7 +148,7 @@ static int pls_tm_launch_job(orte_jobid_t jobid) orte_pls_daemon_info_t *dmn; struct timeval launchstart, launchstop, completionstart, completionstop; struct timeval jobstart, jobstop; - int maxtime=0, mintime=99999999, maxiter, miniter, deltat; + int maxtime=0, mintime=99999999, maxiter = 0, miniter = 0, deltat; float avgtime=0.0; /* check for timing request - get start time if so */