summaryrefslogtreecommitdiff
path: root/ace/Timer_Heap_T.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-15 18:58:35 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-15 18:58:35 +0000
commit54c27533f5b0608cf6b160d9758fcbd7f06466e8 (patch)
treee8e6c6edb066cfdd24eebbc5d383b7820f78cc80 /ace/Timer_Heap_T.cpp
parenta609e8d26217328cd50c60903bbcbc6a9d95a381 (diff)
downloadATCD-54c27533f5b0608cf6b160d9758fcbd7f06466e8.tar.gz
(get_first): fixed ACE_TRACE id string
Diffstat (limited to 'ace/Timer_Heap_T.cpp')
-rw-r--r--ace/Timer_Heap_T.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Timer_Heap_T.cpp b/ace/Timer_Heap_T.cpp
index da127f56e55..8bc5ea3e5f5 100644
--- a/ace/Timer_Heap_T.cpp
+++ b/ace/Timer_Heap_T.cpp
@@ -641,7 +641,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::remove_first (void)
template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Node_T <TYPE> *
ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::get_first (void)
{
- ACE_TRACE ("ACE_Timer_Heap_T::remove_first");
+ ACE_TRACE ("ACE_Timer_Heap_T::get_first");
return this->cur_size_ == 0 ? 0 : this->heap_[0];
}