summaryrefslogtreecommitdiff
path: root/ACE/ace/Throughput_Stats.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-02-24 11:29:43 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-02-24 11:29:43 +0000
commitbf23f8b32f0195515f08b1ab28fbe463b6a96875 (patch)
tree8448a03add926d89b350556264f923336cb40d60 /ACE/ace/Throughput_Stats.cpp
parent35bb855effb444bc986a1e89fc28d72bdd4219e6 (diff)
downloadATCD-bf23f8b32f0195515f08b1ab28fbe463b6a96875.tar.gz
Mon Feb 24 11:31:01 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Throughput_Stats.cpp: Fixed compile warning
Diffstat (limited to 'ACE/ace/Throughput_Stats.cpp')
-rw-r--r--ACE/ace/Throughput_Stats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Throughput_Stats.cpp b/ACE/ace/Throughput_Stats.cpp
index b005705761e..eb90c82bd5e 100644
--- a/ACE/ace/Throughput_Stats.cpp
+++ b/ACE/ace/Throughput_Stats.cpp
@@ -79,7 +79,7 @@ ACE_Throughput_Stats::dump_throughput (const ACE_TCHAR *msg,
double t_avg = 0.0;
if (seconds > 0.0)
{
- double t_avg = samples_count / seconds;
+ t_avg = samples_count / seconds;
}
ACELIB_DEBUG ((LM_DEBUG,