diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-30 01:44:31 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-30 01:44:31 +0000 |
commit | 90f562d6145dc77682303ac20639de3710929f75 (patch) | |
tree | 04811bad80ff8b7fc7d7a2f6ed3f972bc6ba3ea4 /ace/High_Res_Timer.cpp | |
parent | ae2e4e9cca95037a40a0dec43d7585605d88384e (diff) | |
download | ATCD-90f562d6145dc77682303ac20639de3710929f75.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/High_Res_Timer.cpp')
-rw-r--r-- | ace/High_Res_Timer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/High_Res_Timer.cpp b/ace/High_Res_Timer.cpp index 78cf8b1225c..4b311f5cbf3 100644 --- a/ace/High_Res_Timer.cpp +++ b/ace/High_Res_Timer.cpp @@ -198,8 +198,8 @@ ACE_High_Res_Timer::print_ave (const char *str, const int count, ACE_HANDLE hand ACE_OS::sprintf (buf, " total %3lu.%06lu secs\n", total_secs, (extra_nsecs + 500) / 1000); - ACE_OS::write (handle, str, strlen (str)); - ACE_OS::write (handle, buf, strlen (buf)); + ACE_OS::write (handle, str, ACE_OS::strlen (str)); + ACE_OS::write (handle, buf, ACE_OS::strlen (buf)); } void @@ -232,8 +232,8 @@ ACE_High_Res_Timer::print_total (const char *str, const int count, ACE_HANDLE ha ACE_OS::sprintf (buf, " total %3lu.%06lu secs\n", total_secs, (extra_nsecs + 500) / 1000); - ACE_OS::write (handle, str, strlen (str)); - ACE_OS::write (handle, buf, strlen (buf)); + ACE_OS::write (handle, str, ACE_OS::strlen (str)); + ACE_OS::write (handle, buf, ACE_OS::strlen (buf)); } int |