Fixed Go compiler errors in the new Windows code; round 1.

This commit is contained in:
Pietro Gagliardi 2014-07-17 23:48:44 -04:00
parent 70e45bef57
commit 501b6a3a34
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import "C"
//export xpanic
func xpanic(msg *C.char, lasterr C.DWORD) {
panic(fmt.Errorf("%s: %s", C.GoString(msg), syscall.Errno(lasterr))
panic(fmt.Errorf("%s: %s", C.GoString(msg), syscall.Errno(lasterr)))
}
//export xmissedmsg