mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-24 13:48:56 +08:00
Comments
This commit is contained in:
parent
42957707db
commit
2b6d0754ed
@ -78,11 +78,13 @@ func UptimeWithContext(ctx context.Context) (uint64, error) {
|
||||
return 0, fmt.Errorf("expected 'hours:minutes,' format but got '%s'", ut[4])
|
||||
}
|
||||
|
||||
// Parse hours
|
||||
hours, err = strconv.ParseUint(hm[0], 10, 64)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
// Remove trailing comma from minutes and parse
|
||||
minutes, err = strconv.ParseUint(strings.Replace(hm[1], ",", "", -1), 10, 64)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
|
Loading…
x
Reference in New Issue
Block a user