Skip to content

Commit 4f6c723

Browse files
authored
Merge pull request htacg#953 from ihsinme/patch-1
simple fix for the range of the condition.
2 parents df8df89 + 81603aa commit 4f6c723

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)