summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-08-26 15:31:51 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-08-26 15:31:51 +0000
commit3fa5f2b2c90f85861cbaedf5339d5cb3e021c000 (patch)
treef0abdb2df10c02c9793a733ddc18c0b8e9f4904d
parent5323c833739ce52c5e165fce9a4e310006e5e142 (diff)
downloadATCD-3fa5f2b2c90f85861cbaedf5339d5cb3e021c000.tar.gz
Removed a cast that I inadvertently added.
-rw-r--r--TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp b/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
index f9d1663dcf8..5fd8f5a9e17 100644
--- a/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
+++ b/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
@@ -129,7 +129,7 @@ ACE_Runtime_Scheduler::set (RtecScheduler::handle_t handle,
|| rt_info_[handle - 1].period != period
|| rt_info_[handle - 1].criticality != criticality
|| rt_info_[handle - 1].importance != ACE_static_cast (CORBA::Long, importance)
- || rt_info_[handle - 1].quantum != ACE_static_cast (CORBA::Long, quantum)
+ || rt_info_[handle - 1].quantum != quantum
|| rt_info_[handle - 1].info_type != info_type
|| rt_info_[handle - 1].threads != ACE_static_cast (CORBA::Long, threads))
ACE_ERROR ((LM_ERROR,