Commit 43734f8f authored by Damian Gryski's avatar Damian Gryski

printf verb fix

parent 543a53a6
......@@ -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