summaryrefslogtreecommitdiff
path: root/TAO/examples
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-31 22:38:19 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-31 22:38:19 +0000
commit422d7930f2a50d40ddcbce0c096ad9ad0cc87cf1 (patch)
treecef9a53bdf1710eff09f2495b3e33a8f371ef525 /TAO/examples
parentc2e772cd200400b3bb9422db0f0d1385778e063c (diff)
downloadATCD-422d7930f2a50d40ddcbce0c096ad9ad0cc87cf1.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/examples')
-rw-r--r--TAO/examples/POA/Loader/Servant_Activator.cpp2
-rw-r--r--TAO/examples/POA/Loader/Servant_Activator.h7
2 files changed, 1 insertions, 8 deletions
diff --git a/TAO/examples/POA/Loader/Servant_Activator.cpp b/TAO/examples/POA/Loader/Servant_Activator.cpp
index fe17d1feef7..9f6224bc8b0 100644
--- a/TAO/examples/POA/Loader/Servant_Activator.cpp
+++ b/TAO/examples/POA/Loader/Servant_Activator.cpp
@@ -36,7 +36,7 @@ ServantActivator_i::ServantActivator_i (CORBA::ORB_ptr orb,
// The dll is opened using the dllname passed.
if (this->dll_.open (dllname) == -1)
ACE_ERROR ((LM_ERROR,
- "%p",
+ "%p\n",
this->dll_.error ()));
diff --git a/TAO/examples/POA/Loader/Servant_Activator.h b/TAO/examples/POA/Loader/Servant_Activator.h
index c5d76a2482b..14afe4c4e8b 100644
--- a/TAO/examples/POA/Loader/Servant_Activator.h
+++ b/TAO/examples/POA/Loader/Servant_Activator.h
@@ -84,13 +84,6 @@ public:
// destroy the servant associated with the object.
private:
- ACE_CString dllname_;
- // The name of the dll containing the servant.
-
- ACE_CString create_symbol_;
- // The symbol which on getting invoked will give us the servant
- // pointer.
-
ACE_DLL dll_;
// The ACE_DLL object which performs the task of loading the dll
// and accessing it.