Skip to content

Commit

Permalink
Fix incorrect Decode argument
Browse files Browse the repository at this point in the history
Co-authored-by: dkj <[email protected]>
  • Loading branch information
kjsanger and dkj authored Nov 4, 2024
1 parent 6d834c0 commit 8e07c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sqyrrl.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 8e07c43

Please sign in to comment.