Skip to content

Commit 81603aa

Browse files
authored
simple fix for the range of the condition.
simple fix for the range of the condition.
1 parent fa6d5b5 commit 81603aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streamio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ static void EncodeIbm858( uint c, StreamOut* out )
803803
/* Convert from Latin0 (aka Latin9, ISO-8859-15) to Unicode */
804804
static uint DecodeLatin0(uint c)
805805
{
806-
if (159 < c && c < 191)
806+
if (163 < c && c < 191)
807807
{
808808
switch (c)
809809
{

0 commit comments

Comments
 (0)