X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Flocale%2Ficonv.c;h=e1b00de370214e5412cae448f27775d368071c1d;hb=bb8d3d00e239f1929af29c441eb729132ffeed83;hp=f9f80174fabf53b9607f712b84baca3d0f21e699;hpb=9ae8d5fc71a4b61ec826d58f03f7b543755fb1d4;p=musl 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; }