diff --git a/src/fmt/print.go b/src/fmt/print.go index 9c3bd3efec..efbe3f193e 100644 --- a/src/fmt/print.go +++ b/src/fmt/print.go @@ -112,8 +112,8 @@ func (b *buffer) writeByte(c byte) { *b = append(*b, c) } -func (bp *buffer) writeRune(r rune) { - *bp = utf8.AppendRune(*bp, r) +func (b *buffer) writeRune(r rune) { + *b = utf8.AppendRune(*b, r) } // pp is used to store a printer's state and is reused with sync.Pool to avoid allocations.