extra non printable char

This commit is contained in:
Michael Plaisted
2021-12-22 12:36:53 -06:00
committed by GitHub
parent 437ad17c76
commit 1f6ecd7ab4

View File

@@ -448,7 +448,7 @@
outputStream.WriteByte((byte)'\\');
outputStream.WriteByte((byte)Escaped[ei]);
}
else if (c < 32 || c > 127) // non printable
else if (c < 32 || c > 126) // non printable
{
var b3 = c / 64;
var b2 = (c - b3 * 64) / 8;