From 72c4f0a7e68216de985cca06f7491c0be4349c2a Mon Sep 17 00:00:00 2001 From: Ola Bini Date: Sat, 21 Dec 2019 16:08:04 +0000 Subject: [PATCH] Add missing ... for forwarding to Print, reported by go vet --- cmd/grumble/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/grumble/client.go b/cmd/grumble/client.go index 3272414..d6bf9cd 100644 --- a/cmd/grumble/client.go +++ b/cmd/grumble/client.go @@ -161,7 +161,7 @@ func (client *Client) IsVerified() bool { // Log a panic and disconnect the client. func (client *Client) Panic(v ...interface{}) { - client.Print(v) + client.Print(v...) client.Disconnect() }