Fix build

This commit is contained in:
Milan Nikolic 2019-11-25 03:42:11 +01:00
parent e6254b9947
commit ac39419ad0
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ import (
func SetTraceLog(typeFlags int) {
logTypeFlags = typeFlags
ctypeFlags := (C.uchar)(typeFlags)
ctypeFlags := (C.int)(typeFlags)
C.SetTraceLogLevel(ctypeFlags)
}