Add missing ... for forwarding to Print, reported by go vet

This commit is contained in:
Ola Bini 2019-12-21 16:08:04 +00:00
parent d9b6cbb89f
commit 72c4f0a7e6
No known key found for this signature in database
GPG key ID: 6786A150F6A2B28F

View file

@ -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()
}