summaryrefslogtreecommitdiffstats
path: root/fdisks/fdiskdoslabel.c
diff options
context:
space:
mode:
authorBenno Schulenberg2013-04-19 20:14:59 +0200
committerKarel Zak2013-04-26 13:55:29 +0200
commita48c321dd175d043fb4572bab625631b2055075e (patch)
tree9b281d8f173ed453855d304846808d10a1de55f3 /fdisks/fdiskdoslabel.c
parentcfdisk: fix ambiguous code (diff)
downloadkernel-qcow2-util-linux-a48c321dd175d043fb4572bab625631b2055075e.tar.gz
kernel-qcow2-util-linux-a48c321dd175d043fb4572bab625631b2055075e.tar.xz
kernel-qcow2-util-linux-a48c321dd175d043fb4572bab625631b2055075e.zip
textual: fixing typos in a warning and an error message
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'fdisks/fdiskdoslabel.c')
-rw-r--r--fdisks/fdiskdoslabel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fdisks/fdiskdoslabel.c b/fdisks/fdiskdoslabel.c
index 66e3bdc38..415f222ca 100644
--- a/fdisks/fdiskdoslabel.c
+++ b/fdisks/fdiskdoslabel.c
@@ -764,7 +764,7 @@ static void check(struct fdisk_context *cxt, size_t n,
fprintf(stderr, _("Partition %zd: sector %d greater than "
"maximum %llu\n"), n, s, cxt->geom.sectors);
if (real_c >= cxt->geom.cylinders)
- fprintf(stderr, _("Partitions %zd: cylinder %d greater than "
+ fprintf(stderr, _("Partition %zd: cylinder %d greater than "
"maximum %llu\n"), n, real_c + 1, cxt->geom.cylinders);
if (cxt->geom.cylinders <= 1024 && start != total)
fprintf(stderr,