Skip to content

Commit

Permalink
fix errors on mac & windows
Browse files Browse the repository at this point in the history
  • Loading branch information
0pcom committed Jul 13, 2024
1 parent 5f1330b commit 4ef4045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/visor/visorconfig/values_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type Survey struct {
}

// SystemSurvey returns system survey
func SystemSurvey(dmsgDisc string) (Survey, error) {
func SystemSurvey() (Survey, error) {
disks, err := ghw.Block(ghw.WithDisableWarnings())
if err != nil {
return Survey{}, err
Expand Down
2 changes: 1 addition & 1 deletion pkg/visor/visorconfig/values_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type Survey struct {
}

// SystemSurvey returns system survey
func SystemSurvey(dmsgDisc string) (Survey, error) {
func SystemSurvey() (Survey, error) {
disks, err := ghw.Block(ghw.WithDisableWarnings())
if err != nil {
return Survey{}, err
Expand Down

0 comments on commit 4ef4045

Please sign in to comment.