diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-17 23:48:44 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-17 23:48:44 -0400 |
| commit | 501b6a3a34d349a4d25b7609ffafb6e2620a2aa3 (patch) | |
| tree | 072d1663bc9bdbadae7abceb92bcec9daf90b19b | |
| parent | 70e45bef57e36a57df9619acfab7f5affee9325e (diff) | |
Fixed Go compiler errors in the new Windows code; round 1.
| -rw-r--r-- | redo/common_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/common_windows.go b/redo/common_windows.go index f8e39eb..77a2b99 100644 --- a/redo/common_windows.go +++ b/redo/common_windows.go @@ -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 |
