diff options
Diffstat (limited to 'iconvdata/euc-jp.c')
-rw-r--r-- | iconvdata/euc-jp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/euc-jp.c b/iconvdata/euc-jp.c index abb4bc6..1a63899 100644 --- a/iconvdata/euc-jp.c +++ b/iconvdata/euc-jp.c @@ -77,7 +77,7 @@ ch2 = inptr[1]; \ \ /* All second bytes of a multibyte character must be >= 0xa1. */ \ - if (__builtin_expect (ch2, 0xa1) < 0xa1) \ + if (__builtin_expect (ch2 < 0xa1, 0)) \ { \ /* This is an illegal character. */ \ if (! ignore_errors_p ()) \ |