diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 07:25:53 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 07:25:53 +0000 |
commit | 3b2244526c7ae64f744539154681b9883daebc3f (patch) | |
tree | e97ff5a3fa541746a605d1f58862c65d16e999f5 /source3/lib/charcnv.c | |
parent | 21554bfae25d556562b24bdc5966fa517602561a (diff) | |
download | samba-3b2244526c7ae64f744539154681b9883daebc3f.tar.gz samba-3b2244526c7ae64f744539154681b9883daebc3f.tar.bz2 samba-3b2244526c7ae64f744539154681b9883daebc3f.zip |
Merge of signed/unsigned fixes from HEAD.
(This used to be commit e9f56a157bd472914eebf64fde586104d8274717)
Diffstat (limited to 'source3/lib/charcnv.c')
-rw-r--r-- | source3/lib/charcnv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 3428377d95..6dd3cd52d9 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -139,7 +139,7 @@ size_t convert_string(charset_t from, charset_t to, i_len=srclen; o_len=destlen; retval = smb_iconv(descriptor, &inbuf, &i_len, &outbuf, &o_len); - if(retval==-1) { + if(retval==(size_t)-1) { const char *reason="unknown error"; switch(errno) { case EINVAL: @@ -214,7 +214,7 @@ convert: retval = smb_iconv(descriptor, &inbuf, &i_len, &outbuf, &o_len); - if(retval == -1) { + if(retval == (size_t)-1) { const char *reason="unknown error"; switch(errno) { case EINVAL: |