diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 21:57:33 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 21:57:33 +0000 |
commit | 5c73d13fe9e9c0b389ba8258c7547ac1023fceea (patch) | |
tree | 5489cd104505c58f0248c016b2b00dff04cf0e4a /TAO/tao/MProfile.cpp | |
parent | 81049b74d92d2bccf709af62eb605d4a0b9f704d (diff) | |
download | ATCD-5c73d13fe9e9c0b389ba8258c7547ac1023fceea.tar.gz |
Fixed return value in ACE_CHECK....
Diffstat (limited to 'TAO/tao/MProfile.cpp')
-rw-r--r-- | TAO/tao/MProfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/MProfile.cpp b/TAO/tao/MProfile.cpp index c3c6880d2ee..ac519899015 100644 --- a/TAO/tao/MProfile.cpp +++ b/TAO/tao/MProfile.cpp @@ -210,7 +210,7 @@ TAO_MProfile::hash (CORBA::ULong max, CORBA::Environment &ACE_TRY_ENV) for (TAO_PHandle h=0; h < last_ ; h++) { hashval += pfiles_[h]->hash (max, ACE_TRY_ENV); - ACE_CHECK; + ACE_CHECK_RETURN (0); } // The above hash function return an ULong between 0 and max here we |