summaryrefslogtreecommitdiffstats
path: root/Detail.c
diff options
context:
space:
mode:
Diffstat (limited to 'Detail.c')
-rw-r--r--Detail.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/Detail.c b/Detail.c
index 832e0d8..42e9907 100644
--- a/Detail.c
+++ b/Detail.c
@@ -168,11 +168,14 @@ int Detail(char *dev, int brief, int test, char *homehost)
(larray_size >= 0xFFFFFFFFULL|| array.size == 0)) {
unsigned long long dsize = get_component_size(fd);
if (dsize > 0)
- printf(" Device Size : %llu%s\n", dsize, human_size((long long)array.size<<10));
+ printf(" Used Dev Size : %llu%s\n",
+ dsize,
+ human_size((long long)array.size<<10));
else
- printf(" Device Size : unknown\n");
+ printf(" Used Dev Size : unknown\n");
} else
- printf(" Device Size : %d%s\n", array.size, human_size((long long)array.size<<10));
+ printf(" Used Dev Size : %d%s\n", array.size,
+ human_size((long long)array.size<<10));
}
printf(" Raid Devices : %d\n", array.raid_disks);
printf(" Total Devices : %d\n", array.nr_disks);