From d99b3db3674c88d05cc46e76a2a05badade07afd Mon Sep 17 00:00:00 2001 From: WAKAYAMA Shirou Date: Tue, 22 Apr 2014 10:44:36 +0900 Subject: [PATCH] go fmt --- disk_unix.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/disk_unix.go b/disk_unix.go index e72c4e5..ba6f52f 100644 --- a/disk_unix.go +++ b/disk_unix.go @@ -14,9 +14,9 @@ func Disk_usage(path string) (Disk_usageStat, error) { bsize := stat.Bsize / 512 ret := Disk_usageStat{ - Path: path, - Total: (uint64(stat.Blocks) * uint64(bsize)) >> 1, - Free: (uint64(stat.Bfree) * uint64(bsize)) >> 1, + Path: path, + Total: (uint64(stat.Blocks) * uint64(bsize)) >> 1, + Free: (uint64(stat.Bfree) * uint64(bsize)) >> 1, } ret.Used = (ret.Total - ret.Free)