diff options
Diffstat (limited to 'src/lib/os/os_test.go')
-rw-r--r-- | src/lib/os/os_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/os/os_test.go b/src/lib/os/os_test.go index 93a2c5e08..7349b2247 100644 --- a/src/lib/os/os_test.go +++ b/src/lib/os/os_test.go @@ -38,7 +38,7 @@ func size(name string, t *testing.T) uint64 { var buf [100]byte; len := 0; for { - n, e := file.Read(buf); + n, e := file.Read(&buf); if n < 0 || e != nil { t.Fatal("read failed:", err); } |