summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ivy/Ivy.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ivy/Ivy.cxx b/Ivy/Ivy.cxx
index 3ef0ce2..c70d23f 100644
--- a/Ivy/Ivy.cxx
+++ b/Ivy/Ivy.cxx
@@ -97,7 +97,7 @@ const char * Ivy::GetDomain(const char *domainlist)
domain = DEFAULT_DOMAIN;
}
// first find our UDP port
- int sep_index = domain.rfind( ':' );
+ size_t sep_index = domain.rfind( ':' );
if ( sep_index == -1 )
{
domain = DEFAULT_DOMAIN;