mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
fix two print statements
R=gri OCL=14105 CL=14105
This commit is contained in:
parent
72d50900e3
commit
7293dab5a9
1 changed files with 2 additions and 2 deletions
|
|
@ -66,13 +66,13 @@ func (f *Fmt) str() string {
|
|||
}
|
||||
|
||||
func (f *Fmt) put() {
|
||||
print f.buf;
|
||||
print(f.buf);
|
||||
f.clearbuf();
|
||||
f.clearflags();
|
||||
}
|
||||
|
||||
func (f *Fmt) putnl() {
|
||||
print f.buf, "\n";
|
||||
print(f.buf, "\n");
|
||||
f.clearbuf();
|
||||
f.clearflags();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue