summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-23 19:50:38 +0000
committermayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-23 19:50:38 +0000
commit21f66091399bf37a76f6479c3b24a27efa57d6ac (patch)
tree235724fd70f62967b464ec6eb2b196c7aaa49a23
parent95ff8d45bb41d0e3ca731639c681b4c4a2b41d93 (diff)
downloadATCD-21f66091399bf37a76f6479c3b24a27efa57d6ac.tar.gz
Tue Jul 23 12:47:45 2002 Mayur Deshpande <mayur@ics.uci.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tests/AMH_Exceptions/client.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index f71ced95f78..17b95b78726 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jul 23 12:47:45 2002 Mayur Deshpande <mayur@ics.uci.edu>
+
+ * tests/AMH_Exceptions/client.cpp (main):
+ Changed an 'long long unsigned int time' to 'int time'. The BCB
+ compiler was complaining about this data-type (no 64-bit
+ support?). Hopefully, the compilers will cast the int to the
+ appropriate type when 'time' is used.
+
Tue Jul 23 12:28:08 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvsc/LoadBalancing/LB_LeastLoaded.h:
diff --git a/TAO/tests/AMH_Exceptions/client.cpp b/TAO/tests/AMH_Exceptions/client.cpp
index 3957443f9cc..9a1c33e2650 100644
--- a/TAO/tests/AMH_Exceptions/client.cpp
+++ b/TAO/tests/AMH_Exceptions/client.cpp
@@ -30,7 +30,7 @@ main (int argc, char *argv[])
1);
}
- long long unsigned int time = 10;
+ int time = 10;
roundtrip->test_method (time ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}