From 81603aa6970f19f967a174159d669daf7f9ea75e Mon Sep 17 00:00:00 2001 From: ihsinme Date: Sun, 13 Jun 2021 15:25:27 +0300 Subject: [PATCH] simple fix for the range of the condition. simple fix for the range of the condition. --- src/streamio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streamio.c b/src/streamio.c index 5a95b65..07f05c7 100644 --- a/src/streamio.c +++ b/src/streamio.c @@ -803,7 +803,7 @@ static void EncodeIbm858( uint c, StreamOut* out ) /* Convert from Latin0 (aka Latin9, ISO-8859-15) to Unicode */ static uint DecodeLatin0(uint c) { - if (159 < c && c < 191) + if (163 < c && c < 191) { switch (c) {