diff options
Diffstat (limited to 'iconvdata/gbgbk.c')
-rw-r--r-- | iconvdata/gbgbk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/iconvdata/gbgbk.c b/iconvdata/gbgbk.c index 04deac6c7e..31c9e78300 100644 --- a/iconvdata/gbgbk.c +++ b/iconvdata/gbgbk.c @@ -1,5 +1,5 @@ /* Mapping tables from GBK to GB2312 and vice versa. - Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1999, 2000-2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999. @@ -101,14 +101,14 @@ || __builtin_expect (inptr[1] < 0xa1, 0) \ /* Now test the exceptions. */ \ || (__builtin_expect (ch >= 0xa2a1, 0) \ - && __builtin_expect (ch <= 0xa2aa, 0)) \ + && __builtin_expect (ch <= 0xa2aa, 0)) \ || (__builtin_expect (ch >= 0xa6e0, 0) \ - && __builtin_expect (ch <= 0xa6f5, 0)) \ + && __builtin_expect (ch <= 0xa6f5, 0)) \ || (__builtin_expect (ch >= 0xa8bb, 0) \ - && __builtin_expect (ch <= 0xa8c0, 0))) \ + && __builtin_expect (ch <= 0xa8c0, 0))) \ { \ /* One of the characters we cannot map. */ \ - STANDARD_ERR_HANDLER (2); \ + STANDARD_TO_LOOP_ERR_HANDLER (2); \ } \ \ /* Copy the two bytes. */ \ |