From 8f05d68a09a23461f51cfd158bb7c94d5fa0694e Mon Sep 17 00:00:00 2001 From: Shirou WAKAYAMA Date: Thu, 12 Mar 2015 09:25:32 +0900 Subject: [PATCH] host: forget to convert to uint64. --- host/host_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/host_darwin.go b/host/host_darwin.go index 6e85dd0..1e6e3c6 100644 --- a/host/host_darwin.go +++ b/host/host_darwin.go @@ -67,7 +67,7 @@ func BootTime() (uint64, error) { return 0, err } - return boottime, nil + return uint64(boottime), nil } func Users() ([]UserStat, error) {