summaryrefslogtreecommitdiffstats
path: root/disk-utils/partx.c
diff options
context:
space:
mode:
Diffstat (limited to 'disk-utils/partx.c')
-rw-r--r--disk-utils/partx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/disk-utils/partx.c b/disk-utils/partx.c
index c4b1d73ea..b69a32956 100644
--- a/disk-utils/partx.c
+++ b/disk-utils/partx.c
@@ -523,7 +523,9 @@ static int list_parts(blkid_partlist ls, int lower, int upper)
start = blkid_partition_get_start(par);
size = blkid_partition_get_size(par);
- printf(_("#%2d: %9ju-%9ju (%9ju sectors, %6ju MB)\n"),
+ printf(P_("#%2d: %9ju-%9ju (%9ju sector, %6ju MB)\n",
+ "#%2d: %9ju-%9ju (%9ju sectors, %6ju MB)\n",
+ size),
n, start, start + size -1,
size, (size << 9) / 1000000);
}