mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[iconv] compilation fix
This commit is contained in:
parent
004a778382
commit
5850fcafbc
@ -1323,7 +1323,7 @@ convert_string(struct conv_table *convert_table,
|
|||||||
size_t before, to_copy;
|
size_t before, to_copy;
|
||||||
char *outp, *inp;
|
char *outp, *inp;
|
||||||
|
|
||||||
if (iconv_cd >= 0) {
|
if (iconv_cd >= (iconv_t)0) {
|
||||||
if (cp != iconv_cp) {
|
if (cp != iconv_cp) {
|
||||||
iconv_close(iconv_cd);
|
iconv_close(iconv_cd);
|
||||||
iconv_cd = (iconv_t)-1;
|
iconv_cd = (iconv_t)-1;
|
||||||
|
Loading…
Reference in New Issue
Block a user