Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/grumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick <actown@users.noreply.github.com>2020-04-11 22:56:31 +0300
committerDerrick <actown@users.noreply.github.com>2020-04-11 22:56:31 +0300
commit181a4f321998046264246cfeb348803636c1c386 (patch)
treeffbda9621f46dab47c338be13e3cbcd37393dab1
parentde7209df853b9d862d5a00171b6ae91e2166e3e2 (diff)
Fix go1.14 build error in Panic function.
-rw-r--r--cmd/grumble/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/grumble/client.go b/cmd/grumble/client.go
index 8fb1650..a2f535a 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()
}