summaryrefslogtreecommitdiff
path: root/ACE/ace/Sample_History.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Sample_History.cpp')
-rw-r--r--ACE/ace/Sample_History.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/ACE/ace/Sample_History.cpp b/ACE/ace/Sample_History.cpp
index 832029e4dde..08639223cb8 100644
--- a/ACE/ace/Sample_History.cpp
+++ b/ACE/ace/Sample_History.cpp
@@ -46,9 +46,14 @@ ACE_Sample_History::dump_samples (const ACE_TCHAR *msg,
#ifndef ACE_NLOGGING
for (size_t i = 0; i != this->sample_count_; ++i)
{
- const ACE_UINT64 x = this->samples_[i] / scale_factor;
- const ACE_UINT32 val = ACE_CU64_TO_CU32 (x);
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT("%s: %d %u\n"), msg, i, val));
+ const ACE_UINT64 val = this->samples_[i] / scale_factor;
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_LIB_TEXT ("%s: ")
+ ACE_SIZE_T_FORMAT_SPECIFIER
+ ACE_LIB_TEXT ("%Q\n"),
+ msg,
+ i,
+ val));
}
#else
ACE_UNUSED_ARG (msg);