summaryrefslogtreecommitdiff
path: root/ace/Dynamic_Service_Base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Dynamic_Service_Base.cpp')
-rw-r--r--ace/Dynamic_Service_Base.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/ace/Dynamic_Service_Base.cpp b/ace/Dynamic_Service_Base.cpp
index 35b963ca64d..4541a9b58bc 100644
--- a/ace/Dynamic_Service_Base.cpp
+++ b/ace/Dynamic_Service_Base.cpp
@@ -86,22 +86,21 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo,
{
type = svc_rec->type ();
if (type != 0)
- obj = type->object ();
+ obj = type->object ();
}
if (ACE::debug ())
{
ACE_DEBUG ((LM_DEBUG,
- ACE_LIB_TEXT ("(%P|%t) DSB::instance, repo=%@, name=%s, ")
- ACE_LIB_TEXT ("type=%@ => %@"),
- repo->repo_, name, type, obj));
+ ACE_LIB_TEXT ("(%P|%t) DSB::instance, repo=%@, name=%s")
+ ACE_LIB_TEXT (" type=%@ => %@"),
+ repo->repo_, name, type, obj));
if (repo->repo_ != repo_found->repo_)
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" [in repo=%@]\n"),
- repo_found->repo_));
+ ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" [in repo=%@]\n"),
+ repo_found->repo_));
else
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n")));
-
+ ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n")));
}
return obj;