aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_du.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-07-04 13:47:42 -0700
committerchrislu <chris.lu@gmail.com>2022-07-04 13:47:42 -0700
commit57975b93ff463e71b20aed8feb1e669ee0f72780 (patch)
tree65555c2a4ee2fa8f64568963dd7d6ea432a29c85 /weed/shell/command_fs_du.go
parenta79f5bd0d5ca01d4e53f016f42cb2103f9d7dad1 (diff)
downloadseaweedfs-57975b93ff463e71b20aed8feb1e669ee0f72780.tar.xz
seaweedfs-57975b93ff463e71b20aed8feb1e669ee0f72780.zip
adjust used size reporting
Diffstat (limited to 'weed/shell/command_fs_du.go')
-rw-r--r--weed/shell/command_fs_du.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go
index 919c052d5..a9d704f37 100644
--- a/weed/shell/command_fs_du.go
+++ b/weed/shell/command_fs_du.go
@@ -45,7 +45,7 @@ func (c *commandFsDu) Do(args []string, commandEnv *CommandEnv, writer io.Writer
blockCount, byteCount, err = duTraverseDirectory(writer, commandEnv, dir, name)
if name == "" && err == nil {
- fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s\n", blockCount, byteCount, dir)
+ fmt.Fprintf(writer, "block:%4d\tlogical size:%10d\t%s\n", blockCount, byteCount, dir)
}
return