summaryrefslogtreecommitdiff
path: root/src/lib/io.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/io.go')
-rw-r--r--src/lib/io.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/io.go b/src/lib/io.go
index 266d948fc..8ab751a02 100644
--- a/src/lib/io.go
+++ b/src/lib/io.go
@@ -20,11 +20,11 @@ export type ReadWrite interface {
}
export func WriteString(w Write, s string) (n int, err *os.Error) {
- b := new([]byte, len(s)+1)
+ b := new([]byte, len(s)+1);
if !syscall.StringToBytes(b, s) {
return -1, os.EINVAL
}
// BUG return w.Write(b[0:len(s)])
- r, e := w.Write(b[0:len(s)])
+ r, e := w.Write(b[0:len(s)]);
return r, e
}