diff options
| author | Russ Cox <rsc@golang.org> | 2011-10-25 22:21:14 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-10-25 22:21:14 -0700 |
| commit | 28c06182c0fdda38f63e7e8696e7a9f939dd40d3 (patch) | |
| tree | efb66ff6dc376e33fdab6136bd8442d8367539a9 /src/pkg | |
| parent | 3e52dadfd7b4c43c1d630d510eeb1b289d2ab422 (diff) | |
| download | go-28c06182c0fdda38f63e7e8696e7a9f939dd40d3.tar.xz | |
exp/winfsnotify: fix govet-found bug
R=golang-dev, hectorchu
CC=golang-dev
https://golang.org/cl/5304044
Diffstat (limited to 'src/pkg')
| -rw-r--r-- | src/pkg/exp/winfsnotify/winfsnotify_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/winfsnotify/winfsnotify_test.go b/src/pkg/exp/winfsnotify/winfsnotify_test.go index 8c53fc8de1..ff7735aa6a 100644 --- a/src/pkg/exp/winfsnotify/winfsnotify_test.go +++ b/src/pkg/exp/winfsnotify/winfsnotify_test.go @@ -40,7 +40,7 @@ func TestNotifyEvents(t *testing.T) { // Add a watch for testDir os.RemoveAll(testDir) if err = os.Mkdir(testDir, 0777); err != nil { - t.Fatalf("Failed to create test directory", err) + t.Fatalf("Failed to create test directory: %s", err) } defer os.RemoveAll(testDir) err = watcher.AddWatch(testDir, mask) |
