You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In mmap_windows.go line 26:
h, err := syscall.CreateFileMapping(f.Fd(), nil, ...
Need convert to syscall.Handle:
h, err := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil,
Original issue reported on code.google.com by [email protected] on 6 Nov 2013 at 5:17
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 6 Nov 2013 at 5:17The text was updated successfully, but these errors were encountered: