summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-30 14:18:50 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-30 14:18:50 +0000
commit14c40c4d69ba082c957eb514092246af8cef5a3b (patch)
treeb4908cbe87378064bebf713c4c1a2a40f16e1147 /TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp
parent4c85814d27bd20b52fa0dad6147766e20a9a01aa (diff)
downloadATCD-14c40c4d69ba082c957eb514092246af8cef5a3b.tar.gz
ChangeLogTag: Sun Jul 30 09:15:13 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp b/TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp
index ba0e5fd9521..b0b4e63d7e1 100644
--- a/TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp
@@ -215,10 +215,10 @@ TAO_AV_Endpoint_Process_Strategy::get_vdev (CORBA::Environment &ACE_TRY_ENV)
{
char vdev_name [BUFSIZ];
ACE_OS::sprintf (vdev_name,
- "%s:%s:%d",
+ "%s:%s:%ld",
"VDev",
this->host_,
- this->pid_);
+ (long) this->pid_);
if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"(%P|%t)%s\n",vdev_name));
@@ -297,10 +297,10 @@ TAO_AV_Endpoint_Process_Strategy_A::get_stream_endpoint (CORBA::Environment &ACE
{
char stream_endpoint_name[BUFSIZ];
ACE_OS::sprintf (stream_endpoint_name,
- "%s:%s:%d",
+ "%s:%s:%ld",
"Stream_Endpoint_A",
this->host_,
- this->pid_);
+ (long) this->pid_);
if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"(%P|%t)%s\n",stream_endpoint_name));
@@ -391,10 +391,10 @@ TAO_AV_Endpoint_Process_Strategy_B::get_stream_endpoint (CORBA::Environment &ACE
{
char stream_endpoint_name[BUFSIZ];
ACE_OS::sprintf (stream_endpoint_name,
- "%s:%s:%d",
+ "%s:%s:%ld",
"Stream_Endpoint_B",
this->host_,
- this->pid_);
+ (long) this->pid_);
if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"(%P|%t)%s\n",stream_endpoint_name));