summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2010-06-18 11:14:47 +0000
committerSteve Huston <shuston@riverace.com>2010-06-18 11:14:47 +0000
commit08823121d5fb07851b11943a92a2239adf00e74d (patch)
treecbae4cf0680d842b8997d3bd0478ad3c120cb3b3
parent29760d97c5b0d40a970a9b507b089da85aef59ef (diff)
downloadATCD-08823121d5fb07851b11943a92a2239adf00e74d.tar.gz
ChangeLogTag:Fri Jun 18 11:13:40 UTC 2010 Steve Huston <shuston@riverace.com>
-rw-r--r--ACE/ChangeLog4
-rw-r--r--ACE/ace/Time_Value.inl4
2 files changed, 6 insertions, 2 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 261d4c80657..fe2d6efb7e1 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 18 11:13:40 UTC 2010 Steve Huston <shuston@riverace.com>
+
+ * ace/Time_Value.inl: Fixed fuzz errors.
+
Thu Jun 17 21:59:34 UTC 2010 Steve Huston <shuston@riverace.com>
* ace/Time_Value.{h inl}: Added explicit set_ and get_ methods for
diff --git a/ACE/ace/Time_Value.inl b/ACE/ace/Time_Value.inl
index 40ab4476290..b1945118c19 100644
--- a/ACE/ace/Time_Value.inl
+++ b/ACE/ace/Time_Value.inl
@@ -150,7 +150,7 @@ ACE_Time_Value::msec (void) const
ACE_INLINE ACE_UINT64
ACE_Time_Value::get_msec () const
{
- // ACE_OS_TRACE ("ACE_Time_Value::msec");
+ // ACE_OS_TRACE ("ACE_Time_Value::get_msec");
ACE_UINT64 ms = ACE_Utils::truncate_cast<ACE_UINT64> (this->tv_.tv_sec);
ms *= 1000;
ms += (this->tv_.tv_usec / 1000);
@@ -175,7 +175,7 @@ ACE_Time_Value::msec (ACE_UINT64 &ms) /*const*/
ACE_INLINE void
ACE_Time_Value::set_msec (const ACE_UINT64 &ms)
{
- // ACE_OS_TRACE ("ACE_Time_Value::msec");
+ // ACE_OS_TRACE ("ACE_Time_Value::set_msec");
// Convert millisecond units to seconds;
ACE_UINT64 secs = ms / 1000;
this->tv_.tv_sec = static_cast<long> (secs);