Windows fix.

This commit is contained in:
zergon321
2021-11-20 17:14:48 +03:00
parent c765a5c2af
commit 5b756748e0
4 changed files with 2 additions and 2 deletions
Binary file not shown.
+2 -2
View File
@@ -2,8 +2,8 @@ package reisen
import "C"
func bufferSize(maxBufferSize C.int) C.ulong {
var byteSize C.ulong = 8
func bufferSize(maxBufferSize C.int) C.ulonglong {
var byteSize C.ulonglong = 8
return C.ulonglong(maxBufferSize) * byteSize
}