aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorAlex Brainman <alex.brainman@gmail.com>2016-05-11 16:16:37 +1000
committerAlex Brainman <alex.brainman@gmail.com>2016-05-12 03:15:06 +0000
commit81b70f3751374ccd1eda2f536156dd91cd9f9c9b (patch)
tree35b0467881a4853857adea817dd1ba1bac3375a6 /src/syscall
parent21d781070cea6001ee541933ed76dc6da96bde4c (diff)
downloadgo-81b70f3751374ccd1eda2f536156dd91cd9f9c9b.tar.xz
syscall: make mksyscall_windows.go -systemdll flag true by default
Updates #15167 Change-Id: I826f67e75011ba79325a1294ac0d70d7c6a3e32f Reviewed-on: https://go-review.googlesource.com/23022 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Alex Brainman <alex.brainman@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/mksyscall_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/mksyscall_windows.go b/src/syscall/mksyscall_windows.go
index 4ccbb04908..84747962ab 100644
--- a/src/syscall/mksyscall_windows.go
+++ b/src/syscall/mksyscall_windows.go
@@ -68,7 +68,7 @@ import (
var (
filename = flag.String("output", "", "output file name (standard output if omitted)")
printTraceFlag = flag.Bool("trace", false, "generate print statement after every syscall")
- systemDLL = flag.Bool("systemdll", false, "whether all DLLs should be loaded from the Windows system directory")
+ systemDLL = flag.Bool("systemdll", true, "whether all DLLs should be loaded from the Windows system directory")
)
func trim(s string) string {