summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-25 20:52:29 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-25 20:52:29 +0000
commitebdf72ac256c692db4ae13585ea2480146a2ddae (patch)
tree6de6c101707cf48c533aa505e74c5410eae9bb76
parent9ed1378f7d32ca56658c10d760eb0bbb580754c5 (diff)
downloadATCD-ebdf72ac256c692db4ae13585ea2480146a2ddae.tar.gz
ChangeLogTag: Fri Aug 25 15:47:50 2000 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/orbsvcs/IFR_Service/IFR_Service.cpp2
-rw-r--r--TAO/orbsvcs/IFR_Service/IRObject_i.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/IFR_Service/IFR_Service.cpp b/TAO/orbsvcs/IFR_Service/IFR_Service.cpp
index 7398a68ad21..2b73f9fcb80 100644
--- a/TAO/orbsvcs/IFR_Service/IFR_Service.cpp
+++ b/TAO/orbsvcs/IFR_Service/IFR_Service.cpp
@@ -321,7 +321,7 @@ IFR_Service::create_repository (CORBA::Environment &ACE_TRY_ENV)
impl_tie,
POA_IR::ComponentRepository_tie<TAO_ComponentRepository_i> (
impl,
- this->repo_poa_,
+ this->repo_poa_.in (),
1
),
CORBA::NO_MEMORY ()
diff --git a/TAO/orbsvcs/IFR_Service/IRObject_i.cpp b/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
index 98b6e25a0ce..30dfa8dad2a 100644
--- a/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
+++ b/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
@@ -22,7 +22,7 @@ TAO_IRObject_i::int_to_string (CORBA::ULong number) const
{
char retval[9];
- ACE_OS::sprintf (retval, "%08.8X", number);
+ ACE_OS::sprintf (retval, "%8.8X", number);
return CORBA::string_dup (retval);
}