summaryrefslogtreecommitdiff
path: root/TAO/tao/params.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-09-01 10:14:50 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-09-01 10:14:50 +0000
commit7a4155c9467b3ee70337b302bd9b377b4c343e64 (patch)
tree5ba05b153bbef4e8849d974d8d5a51bdde057de4 /TAO/tao/params.cpp
parent070f84a7a6434a26745ce2f2270c55fd354c9e2b (diff)
downloadATCD-7a4155c9467b3ee70337b302bd9b377b4c343e64.tar.gz
ChangeLogTag: Thu Sep 1 10:10:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r--TAO/tao/params.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp
index 1c4f58b4da5..ad6ec450a66 100644
--- a/TAO/tao/params.cpp
+++ b/TAO/tao/params.cpp
@@ -143,7 +143,7 @@ TAO_ORB_Parameters::parse_and_add_endpoints (const ACE_CString &endpoints,
}
int begin = 0;
- int end = endpoints.find (endpoints_delimiter);
+ ssize_t end = endpoints.find (endpoints_delimiter);
for (int i = 0; i < endpoints_count; ++i)
{
@@ -164,7 +164,7 @@ TAO_ORB_Parameters::parse_and_add_endpoints (const ACE_CString &endpoints,
// from the offset `begin' to the end of the string.
// Check for a valid URL style endpoint set
- int const check_offset = endpt.find ("://");
+ ssize_t const check_offset = endpt.find ("://");
if (check_offset > 0 &&
check_offset != endpt.npos)