summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/Token.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Token.cpp b/ace/Token.cpp
index 30cf2943169..748579be47c 100644
--- a/ace/Token.cpp
+++ b/ace/Token.cpp
@@ -22,9 +22,9 @@ ACE_Token::dump (void) const
ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry (ACE_Thread_Mutex &m,
ACE_thread_t t_id)
- : cv_ (m),
- next_ (0),
+ : next_ (0),
thread_id_ (t_id),
+ cv_ (m),
runable_ (0)
{
ACE_TRACE ("ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry");