summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/fmt.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/fmt.go b/src/lib/fmt.go
index 2aafb57b3..d68d9dbf2 100644
--- a/src/lib/fmt.go
+++ b/src/lib/fmt.go
@@ -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();
}