From 501b6a3a34d349a4d25b7609ffafb6e2620a2aa3 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 17 Jul 2014 23:48:44 -0400 Subject: [PATCH] Fixed Go compiler errors in the new Windows code; round 1. --- redo/common_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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