summaryrefslogtreecommitdiff
path: root/ace/Dynamic_Service.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:37:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:37:51 +0000
commitfb59ede8031fb55739160a0753d2a4cd2d6546af (patch)
treeb7abff4feff6894c93ec2ec491fcc93a0df9199c /ace/Dynamic_Service.cpp
parentbf52076b82447057f33cd5ca6fc7ab8fd955c9c1 (diff)
downloadATCD-fb59ede8031fb55739160a0753d2a4cd2d6546af.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Dynamic_Service.cpp')
-rw-r--r--ace/Dynamic_Service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Dynamic_Service.cpp b/ace/Dynamic_Service.cpp
index 8cb84b90ff4..1d8300ae28d 100644
--- a/ace/Dynamic_Service.cpp
+++ b/ace/Dynamic_Service.cpp
@@ -25,12 +25,12 @@ template <class SERVICE> SERVICE *
ACE_Dynamic_Service<SERVICE>::instance (const char *name)
{
ACE_TRACE ("ACE_Dynamic_Service::instance");
- const ACE_Service_Record *svc_rec;
+ const ACE_Service_Type *svc_rec;
if (ACE_Service_Repository::instance ()->find (name, &svc_rec) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "svc_rep"), 0);
- const ACE_Service_Type *type = svc_rec->type ();
+ const ACE_Service_Type_Impl *type = svc_rec->type ();
if (type == 0)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "type"), 0);