aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fmt/print.go4
1 files changed, 2 insertions, 2 deletions
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.