diff options
| author | Russ Cox <rsc@golang.org> | 2014-08-27 23:41:10 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-08-27 23:41:10 -0400 |
| commit | fee7c69c6c091d93c8c709ed562a477fd199bb3b (patch) | |
| tree | 609fa2569ce5382a20862c08de93722d0e46ad62 /src/pkg/runtime | |
| parent | 8ecb9a765e02a8b19d8fad2afa65aee2a068b01a (diff) | |
| download | go-fee7c69c6c091d93c8c709ed562a477fd199bb3b.tar.xz | |
cmd/api: fix for Lock⇒Mutex change
TBR=iant
CC=golang-codereviews
https://golang.org/cl/133150043
Diffstat (limited to 'src/pkg/runtime')
| -rw-r--r-- | src/pkg/runtime/syscall_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/syscall_windows.go b/src/pkg/runtime/syscall_windows.go index 39d8fed1d4..0592c57e1d 100644 --- a/src/pkg/runtime/syscall_windows.go +++ b/src/pkg/runtime/syscall_windows.go @@ -9,7 +9,7 @@ import ( ) type callbacks struct { - lock + lock mutex ctxt [cb_max]*wincallbackcontext n int } |
