summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a10
-rw-r--r--TAO/tao/ORB_Core.cpp4
2 files changed, 12 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index c7bc8082cc3..d2c261ae518 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,13 @@
+Fri Feb 8 17:40:42 2002 Ossama Othman <ossama@uci.edu>
+
+ * tao/ORB_Core.cpp (get_protocols_hooks):
+
+ Fixed a syntax error. ACE_CHECK_RETURN, not ACE_CHECK!
+
+ (run):
+
+ Fixed an unused argument warning.
+
Fri Feb 8 16:40:38 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ORB_Core.cpp :
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index 9bc9ed57394..716840cad88 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -1302,7 +1302,7 @@ TAO_ORB_Core::get_protocols_hooks (ACE_ENV_SINGLE_ARG_DECL)
// Initialize the protocols hooks instance.
this->protocols_hooks_->init_hooks (this
ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
+ ACE_CHECK_RETURN (0);
return this->protocols_hooks_;
}
@@ -1648,7 +1648,7 @@ TAO_ORB_Core::lf_strategy (void)
int
TAO_ORB_Core::run (ACE_Time_Value *tv,
int perform_work
- ACE_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL_NOT_USED)
{
if (TAO_debug_level >= 3)
ACE_DEBUG ((LM_DEBUG,