host: forget to convert to uint64.

This commit is contained in:
Shirou WAKAYAMA 2015-03-12 09:25:32 +09:00
parent 515398a6f6
commit 8f05d68a09
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ func BootTime() (uint64, error) {
return 0, err
}
return boottime, nil
return uint64(boottime), nil
}
func Users() ([]UserStat, error) {