From 8e07c437f4a11b110784e267ca13c186e7c5a7eb Mon Sep 17 00:00:00 2001 From: Keith James <47220353+kjsanger@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:15:13 +0000 Subject: [PATCH] Fix incorrect Decode argument Co-authored-by: dkj --- cmd/sqyrrl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sqyrrl.go b/cmd/sqyrrl.go index 31f763e..53a6c15 100644 --- a/cmd/sqyrrl.go +++ b/cmd/sqyrrl.go @@ -128,7 +128,7 @@ func startServer(cmd *cobra.Command, args []string) (err error) { // NRV return err } - _, err = toml.Decode(string(tomlData), config) + _, err = toml.Decode(string(tomlData), &config) if err != nil { return err }