Commit ebacb0e0 authored by Kamil Kisiel's avatar Kamil Kisiel

Merge pull request #11 from dgryski/printf-verb-fix

printf verb fix
parents 543a53a6 43734f8f
......@@ -430,7 +430,7 @@ func (d *Decoder) loadString() error {
case '"':
delim = '"'
default:
return fmt.Errorf("invalid string delimiter: %s", line[0])
return fmt.Errorf("invalid string delimiter: %c", line[0])
}
if line[len(line)-1] != delim {
......
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