Commit 6c2b7d8f authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Fix some vet errors.

parent f4003c9b
#!/bin/sh #!/bin/sh
set -eu set -eu
for d in fuse fuse/nodefs fuse/pathfs fuse/test zipfs unionfs \
example/hello example/loopback example/zipfs \
example/multizip example/unionfs example/memfs \
example/autounionfs example/statfs ; \
do
go build -o /dev/null github.com/hanwen/go-fuse/${d}
done
for d in fuse zipfs unionfs fuse/test for d in fuse zipfs unionfs fuse/test
do do
......
...@@ -373,14 +373,14 @@ func TestLinkForget(t *testing.T) { ...@@ -373,14 +373,14 @@ func TestLinkForget(t *testing.T) {
for _, fn := range []string{"file1", "file2"} { for _, fn := range []string{"file1", "file2"} {
fn = tc.orig + "/" + fn fn = tc.orig + "/" + fn
if err := os.Remove(fn); err != nil { if err := os.Remove(fn); err != nil {
t.Fatalf("Remove", err) t.Fatalf("Remove: %v", err)
} }
tc.WriteFile(fn, []byte(c), 0644) tc.WriteFile(fn, []byte(c), 0644)
} }
for i, fn := range []string{"file1", "file2"} { for i, fn := range []string{"file1", "file2"} {
fn = tc.mnt + "/" + fn fn = tc.mnt + "/" + fn
if err := os.Truncate(fn, int64(i)); err != nil { if err := os.Truncate(fn, int64(i)); err != nil {
t.Fatalf("Truncate", err) t.Fatalf("Truncate: %v", err)
} }
} }
......
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