mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
internal: fmt.Println -> fmt.Fprintln
This commit is contained in:
parent
eb67d61933
commit
cc9c6f4148
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ func (w *indentWriter) Write(b []byte) (n int, err error) {
|
|||
// flush ensures the current line is terminated.
|
||||
func (w *indentWriter) flush() {
|
||||
if w.inLine {
|
||||
fmt.Println(w.out)
|
||||
fmt.Fprintln(w.out)
|
||||
w.inLine = false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue