diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-25 02:38:23 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-25 02:38:23 +0000 |
commit | fc4bb4082e9fdd16cf7f141bcb03a761b8c6ee36 (patch) | |
tree | 9f4807fc6b86505805033e593d96e38012113022 /ace/Message_Queue.cpp | |
parent | a919c704e3e0f5ea349a09667dd23ad38c8bb6f1 (diff) | |
download | ATCD-fc4bb4082e9fdd16cf7f141bcb03a761b8c6ee36.tar.gz |
(refresh_queue): fixed syntax error: extraneous ;.
Diffstat (limited to 'ace/Message_Queue.cpp')
-rw-r--r-- | ace/Message_Queue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Message_Queue.cpp b/ace/Message_Queue.cpp index 4ad4e7caf8a..171d5174742 100644 --- a/ace/Message_Queue.cpp +++ b/ace/Message_Queue.cpp @@ -864,7 +864,7 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_queue (const ACE_Time_Value & // underlying data block will not be deleted if another // message block is still pointing to it. ACE_Message_Block *temp = (pending_list_tail_) - ? pending_list_tail_->next (); + ? pending_list_tail_->next () : head_; while (temp) |