diff options
-rw-r--r-- | src/locale/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/iconv.c b/src/locale/iconv.c index f9f80174..e1b00de3 100644 --- a/src/locale/iconv.c +++ b/src/locale/iconv.c @@ -310,7 +310,7 @@ iconv_t iconv_open(const char *to, const char *from) { size_t f, t; - if ((t = find_charmap(to)) < 0 || (f = find_charmap(from)) < 0) { + if ((t = find_charmap(to))==-1 || (f = find_charmap(from))==-1) { errno = EINVAL; return (iconv_t)-1; } |