summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
index 8313c3a0cce..42b7d214a3c 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp
@@ -47,7 +47,7 @@ namespace TAO_Notify
: name(p.name())
{
char buf[64];
- long temp = static_cast<long>(p.value ());
+ long temp = static_cast<long> (p.value ());
ACE_OS::sprintf (buf, "%ld", temp);
value = buf;
}
@@ -149,7 +149,7 @@ namespace TAO_Notify
const char * v;
if (find(p.name (), v))
{
- p.assign (static_cast<TimeBase::TimeT>(string_to_uint64(v)));
+ p.assign (static_cast<TimeBase::TimeT> (string_to_uint64(v)));
}
}
@@ -174,7 +174,7 @@ namespace TAO_Notify
const char * val;
if (find(n, val))
{
- v = static_cast<CORBA::Long>(ACE_OS::atoi(val));
+ v = static_cast<CORBA::Long> (ACE_OS::atoi(val));
return true;
}
return false;