Fixed typo

This commit is contained in:
obscuren 2014-03-27 15:38:55 +01:00
parent e0b6091d7e
commit 308c59320c

View File

@ -57,7 +57,7 @@ func DecodeWithReader(reader *bytes.Buffer) interface{} {
switch { switch {
case char == 0: case char == 0:
return nil return nil
case char <= 0x7c: case char <= 0x7f:
return char return char
case char <= 0xb7: case char <= 0xb7: