Skip to content

Commit 5e4a91e

Browse files
committed
unicode: Use the correct maximum size of Cyrillic
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
1 parent b205ac2 commit 5e4a91e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/unicode/flb_utf8_and_win.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ struct flb_unicode_converter win866_converter = {
118118
.aliases = {"CP866", NULL},
119119
.desc = "Windows code pages' converters",
120120
.encoding = FLB_WIN866,
121-
.max_width = 2,
121+
.max_width = 3,
122122
.cb_to_utf8 = flb_win_to_utf8,
123123
.cb_from_utf8 = flb_utf8_to_win,
124124
};

0 commit comments

Comments
 (0)