diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-08-09 17:24:16 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-08-09 17:24:16 -0700 |
commit | 95cb4dcd618774b3f7b5b915c5ce5aa72f853b53 (patch) | |
tree | 5855871af9beca9549fe978bac71434e53f3828f /src/sm_manager.c | |
parent | 5a06ff257f72a629539f23b35026fbcdb8bb372e (diff) |
Fix some clang warnings about integer size/sign conversions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/sm_manager.c')
-rw-r--r-- | src/sm_manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sm_manager.c b/src/sm_manager.c index 7a11a33..7d0e583 100644 --- a/src/sm_manager.c +++ b/src/sm_manager.c @@ -183,7 +183,7 @@ Status SmsRegisterClientReply(SmsConn smsConn, char *clientId) { IceConn iceConn = smsConn->iceConn; - int extra; + size_t extra; smRegisterClientReplyMsg *pMsg; char *pData; @@ -307,7 +307,7 @@ void SmsReturnProperties(SmsConn smsConn, int numProps, SmProp **props) { IceConn iceConn = smsConn->iceConn; - int bytes; + unsigned int bytes; smPropertiesReplyMsg *pMsg; char *pBuf; char *pStart; |