summaryrefslogtreecommitdiff
path: root/ACE/ace/Throughput_Stats.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Throughput_Stats.cpp')
-rw-r--r--ACE/ace/Throughput_Stats.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Throughput_Stats.cpp b/ACE/ace/Throughput_Stats.cpp
index d2d346eafd4..d76f5cb6ebc 100644
--- a/ACE/ace/Throughput_Stats.cpp
+++ b/ACE/ace/Throughput_Stats.cpp
@@ -45,7 +45,7 @@ ACE_Throughput_Stats::sample (ACE_UINT64 throughput,
this->throughput_sum_x2_ = throughput * throughput;
this->throughput_sum_xy_ = throughput * this->samples_count_;
- printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_);
+ ACE_OS::printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_);
#endif /* 0 */
}
else
@@ -61,7 +61,7 @@ ACE_Throughput_Stats::sample (ACE_UINT64 throughput,
this->throughput_sum_x2_ += throughput * throughput;
this->throughput_sum_xy_ += throughput * this->samples_count_;
- printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_);
+ ACE_OS::printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_);
#endif /* 0 */
}
}