Skip to content

Commit

Permalink
fix LoadAvg definition error on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
shirou committed Aug 26, 2014
1 parent c5e37d9 commit 547d722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions load_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

package gopsutil

func LoadAvg() (LoadAvgStat, error) {
func LoadAvg() (*LoadAvgStat, error) {
ret := LoadAvgStat{}

return ret, nil
return &ret, NotImplementedError
}

0 comments on commit 547d722

Please sign in to comment.