Skip to content

Commit

Permalink
reportinfo.go: use pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
lunarlattice0 committed Oct 17, 2023
1 parent f9e5a43 commit 7914b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra/reportinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type SysInfo struct {
Config config.Config // Done
}

func GenerateInfo(currentConfiguration config.Config) (SysInfo, error) {
func GenerateInfo(currentConfiguration *config.Config) (SysInfo, error) {
var currentSystem SysInfo

// Check for AVX
Expand Down

0 comments on commit 7914b5d

Please sign in to comment.