Commit c72dbaf3 authored by Adam Langley's avatar Adam Langley

encoding/hex: don't try to print DEL.

R=agl
CC=golang-dev
https://golang.org/cl/4551081
parent 5ab096d0
...@@ -128,7 +128,7 @@ type dumper struct { ...@@ -128,7 +128,7 @@ type dumper struct {
} }
func toChar(b byte) byte { func toChar(b byte) byte {
if b < 32 || b > 127 { if b < 32 || b > 126 {
return '.' return '.'
} }
return b return b
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment