1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00

fix LoadAvg definition error on Windows.

This commit is contained in:
WAKAYAMA Shirou 2014-08-26 23:56:38 +09:00
parent c5e37d9fdd
commit 547d722aef

View File

@ -2,8 +2,8 @@
package gopsutil
func LoadAvg() (LoadAvgStat, error) {
func LoadAvg() (*LoadAvgStat, error) {
ret := LoadAvgStat{}
return ret, nil
return &ret, NotImplementedError
}