Commit d5a8647d authored by Alex Brainman's avatar Alex Brainman Committed by Russ Cox

syscall: windows SysAlloc should use stdcall_raw not syscall

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/1382041
parent 12923e43
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
void* void*
SysAlloc(uintptr n) SysAlloc(uintptr n)
{ {
return stdcall(VirtualAlloc, nil, n, 0x3000, 0x40); return stdcall_raw(VirtualAlloc, nil, n, 0x3000, 0x40);
} }
void void
......
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