summaryrefslogtreecommitdiff
path: root/ace/Message_Queue.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-25 02:38:23 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-25 02:38:23 +0000
commitfc4bb4082e9fdd16cf7f141bcb03a761b8c6ee36 (patch)
tree9f4807fc6b86505805033e593d96e38012113022 /ace/Message_Queue.cpp
parenta919c704e3e0f5ea349a09667dd23ad38c8bb6f1 (diff)
downloadATCD-fc4bb4082e9fdd16cf7f141bcb03a761b8c6ee36.tar.gz
(refresh_queue): fixed syntax error: extraneous ;.
Diffstat (limited to 'ace/Message_Queue.cpp')
-rw-r--r--ace/Message_Queue.cpp2
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)