summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-97b6
-rw-r--r--ace/Service_Repository.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog-97b b/ChangeLog-97b
index 15a7a711faf..0016c05a675 100644
--- a/ChangeLog-97b
+++ b/ChangeLog-97b
@@ -1,3 +1,9 @@
+Mon Nov 10 00:11:26 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Service_Repository.cpp: The close() method needed a '\n' in
+ one of the debug messages. Thanks to Steve Coy for reporting
+ this.
+
Sun Nov 09 23:29:43 1997 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.3.42, released Sun Nov 09 23:29:43 1997.
diff --git a/ace/Service_Repository.cpp b/ace/Service_Repository.cpp
index dc6ff9d9012..5667b7ddf32 100644
--- a/ace/Service_Repository.cpp
+++ b/ace/Service_Repository.cpp
@@ -126,7 +126,7 @@ ACE_Service_Repository::close (void)
while (this->current_size_ > 0)
{
int i = --this->current_size_;
- ACE_DEBUG ((LM_DEBUG, "shutting down %s",
+ ACE_DEBUG ((LM_DEBUG, "shutting down %s\n",
this->service_vector_[i]->name ()));
delete (ACE_Service_Type *)this->service_vector_[i];
}