diff options
Diffstat (limited to 'charset.c')
-rw-r--r-- | charset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/charset.c b/charset.c index 5441952a0db52..4897cbaf6adc2 100644 --- a/charset.c +++ b/charset.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1984-2019 Mark Nudelman + * Copyright (C) 1984-2020 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. @@ -509,7 +509,7 @@ prutfchar(ch) */ public int utf_len(ch) - unsigned char ch; + int ch; { if ((ch & 0x80) == 0) return 1; |