scoutfs df: fix typo

This commit is contained in:
Ben McClelland
2020-10-28 14:13:59 -07:00
parent f1ca1aee0a
commit bd2ba82da4
+2 -2
View File
@@ -656,7 +656,7 @@ type DiskUsage struct {
TotalMetaBlocks uint64
FreeMetaBlocks uint64
TotalDataBlocks uint64
FreeDataBlcoks uint64
FreeDataBlocks uint64
}
var dfBatchCount uint64 = 4096
@@ -713,6 +713,6 @@ func GetDF(f *os.File) (DiskUsage, error) {
TotalMetaBlocks: stfs.Total_meta_blocks,
FreeMetaBlocks: metaFree,
TotalDataBlocks: stfs.Total_data_blocks,
FreeDataBlcoks: dataFree,
FreeDataBlocks: dataFree,
}, nil
}