diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-02-09 01:42:24 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-02-09 01:42:24 +0000 |
commit | c615e1bb87e5e3e8479cffdde917cce046b1b5e2 (patch) | |
tree | 5f16549928457db4d9750f4cb13c142130f4b182 | |
parent | 7d8ff3130f15424a1c9ac12c12036f5530e3190b (diff) | |
download | ATCD-c615e1bb87e5e3e8479cffdde917cce046b1b5e2.tar.gz |
ChangeLogTag:Fri Feb 8 17:40:42 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 10 | ||||
-rw-r--r-- | TAO/tao/ORB_Core.cpp | 4 |
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, |