diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-20 14:35:11 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-20 14:35:11 -0700 |
commit | 0d276835222eeb57de56f56cd9e12611b1d30466 (patch) | |
tree | 45c77a6944028cd1923fadd1f571975be21198eb /src/connect.c | |
parent | bb3d8a7767cf260b97c7e019e4fec0ee7d7b65a8 (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.c | 6 |
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; |