From b462166fbe71bf4457d779501779ffb03a5c49a6 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 23 May 2019 17:19:59 +0200 Subject: ui: err is a %v Signed-off-by: Jason A. Donenfeld --- ui/ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.go b/ui/ui.go index 0f91b61e..aa0c7528 100644 --- a/ui/ui.go +++ b/ui/ui.go @@ -95,7 +95,7 @@ func RunUI() { if shouldQuitManagerWhenExiting { _, err := manager.IPCClientQuit(true) if err != nil { - walk.MsgBox(nil, "Error Exiting WireGuard", fmt.Sprintf("Unable to exit service due to: %s. You may want to stop WireGuard from the service manager.", err), walk.MsgBoxIconError) + walk.MsgBox(nil, "Error Exiting WireGuard", fmt.Sprintf("Unable to exit service due to: %v. You may want to stop WireGuard from the service manager.", err), walk.MsgBoxIconError) } } } -- cgit v1.2.3-59-g8ed1b