diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2003-12-19 12:54:42 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2003-12-19 12:54:42 +0000 |
| commit | 6abda1f09339e3c395822c4b834b869ecb6ec997 (patch) | |
| tree | d09bf367917644fe325e8343a98bb913591fe375 /lib | |
| parent | 847f699275a08249476a6c03ba3400afbfaa0c61 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/locale/gbk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/gbk.c b/lib/libc/locale/gbk.c index b7408593177d..e5572bceefe8 100644 --- a/lib/libc/locale/gbk.c +++ b/lib/libc/locale/gbk.c @@ -68,7 +68,7 @@ _gbk_check(u_int c) { c &= 0xff; - return ((c >= 0x80 && c <= 0xfe) ? 2 : 1); + return ((c >= 0x81 && c <= 0xfe) ? 2 : 1); } size_t |
