diff options
-rw-r--r-- | ChangeLog-99b | 5 | ||||
-rw-r--r-- | ace/Stats.cpp | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index e7cd151952e..ee9572760e7 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,8 @@ +Thu Jul 22 16:55:14 1999 Carlos O'Ryan <coryan@cs.wustl.edu> + + * ace/Stats.cpp: + Fixed message that had a %s but no argument! + Thu Jul 22 15:12:18 1999 David L. Levine <levine@cs.wustl.edu> * ace/Codeset_IBM1047.{h,cpp}: wrapped with #ifdef ACE_MVS diff --git a/ace/Stats.cpp b/ace/Stats.cpp index 2b4cfbc207c..658bd5ec12d 100644 --- a/ace/Stats.cpp +++ b/ace/Stats.cpp @@ -547,7 +547,8 @@ ACE_Throughput_Stats::dump_results (const ASYS_TCHAR* msg, { if (this->samples_count_ == 0u) { - ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("%s : no data collected\n"))); + ACE_DEBUG ((LM_DEBUG, + ASYS_TEXT ("%s : no data collected\n"), msg)); return; } |