Commit 7293dab5 authored by Rob Pike's avatar Rob Pike

fix two print statements

R=gri
OCL=14105
CL=14105
parent 72d50900
......@@ -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();
}
......
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