summaryrefslogtreecommitdiff
path: root/src/connect.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-20 14:35:11 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-20 14:35:11 -0700
commit0d276835222eeb57de56f56cd9e12611b1d30466 (patch)
tree45c77a6944028cd1923fadd1f571975be21198eb /src/connect.c
parentbb3d8a7767cf260b97c7e019e4fec0ee7d7b65a8 (diff)
Fix some clang warnings about integer sign/size conversions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/connect.c')
-rw-r--r--src/connect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/connect.c b/src/connect.c
index b59e94c..193a746 100644
--- a/src/connect.c
+++ b/src/connect.c
@@ -451,9 +451,9 @@ ConnectToPeer (char *networkIdsList, char **actualConnectionRet)
char* address;
char *ptr, *endptr, *delim;
int madeConnection = 0;
- int len, retry;
- int connect_stat;
- int address_size;
+ size_t len;
+ int retry, connect_stat;
+ size_t address_size;
XtransConnInfo trans_conn = NULL;
*actualConnectionRet = NULL;