summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-05-28 08:28:55 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-05-28 08:28:55 +0000
commitdd1ab461b3e7a991cadc206004be0d86c608c6b5 (patch)
treea69110232c7679ac4acb78d32487af2b872cd44d /TAO/orbsvcs
parent2501746bd6539370c264022ba4a1dbfcb3cbfb82 (diff)
downloadATCD-dd1ab461b3e7a991cadc206004be0d86c608c6b5.tar.gz
ChangeLogTag: Wed May 28 08:27:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
index 70b59a39698..a5f0a0b2871 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
@@ -416,8 +416,8 @@ TAO_EC_Default_Factory::init (int argc, ACE_TCHAR* argv[])
if (arg_shifter.is_parameter_next ())
{
const ACE_TCHAR* opt = arg_shifter.get_current ();
- unsigned long timeout_ = ACE_OS::strtoul(opt, 0, 10);
- this->consumer_control_timeout_.usec(timeout_);
+ unsigned long timeout = ACE_OS::strtoul(opt, 0, 10);
+ this->consumer_control_timeout_.usec(timeout);
arg_shifter.consume_arg ();
}
}
@@ -429,8 +429,8 @@ TAO_EC_Default_Factory::init (int argc, ACE_TCHAR* argv[])
if (arg_shifter.is_parameter_next ())
{
const ACE_TCHAR* opt = arg_shifter.get_current ();
- unsigned long timeout_ = ACE_OS::strtoul(opt, 0, 10);
- this->supplier_control_timeout_.usec(timeout_);
+ unsigned long timeout = ACE_OS::strtoul(opt, 0, 10);
+ this->supplier_control_timeout_.usec(timeout);
arg_shifter.consume_arg ();
}
}