diff options
Diffstat (limited to 'iconvdata/unicode.c')
-rw-r--r-- | iconvdata/unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/unicode.c b/iconvdata/unicode.c index c63eb68eb2..7798ae330b 100644 --- a/iconvdata/unicode.c +++ b/iconvdata/unicode.c @@ -152,7 +152,7 @@ gconv_end (struct __gconv_step *data) { \ uint32_t c = get32 (inptr); \ \ - if (__builtin_expect (c, 0) >= 0x10000) \ + if (__builtin_expect (c >= 0x10000, 0)) \ { \ UNICODE_TAG_HANDLER (c, 4); \ STANDARD_ERR_HANDLER (4); \ |