diff options
Diffstat (limited to 'iconvdata/gb18030.c')
-rw-r--r-- | iconvdata/gb18030.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/gb18030.c b/iconvdata/gb18030.c index 5400d64838..0ab68984c3 100644 --- a/iconvdata/gb18030.c +++ b/iconvdata/gb18030.c @@ -22068,7 +22068,7 @@ static const unsigned char __ucs_to_gb18030_tab2[][2] = \ inptr += 4; \ } \ - else if (__builtin_expect (ch2, 0x40) >= 0x40) \ + else if (__builtin_expect (ch2 >= 0x40, 1)) \ { \ /* A two-byte character */ \ idx = (ch - 0x81) * 192 + (ch2 - 0x40); \ |