add extra hex char

This commit is contained in:
Michael Plaisted
2021-12-22 13:23:41 -06:00
parent 8834bff378
commit 2146466a9a

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;