summaryrefslogtreecommitdiffstats
path: root/disk-utils/partx.c
diff options
context:
space:
mode:
authorBenno Schulenberg2015-01-11 22:27:57 +0100
committerKarel Zak2015-01-12 11:03:27 +0100
commit4b8dfcc8a46b5f88501b5072555c3db1eb2eb0a1 (patch)
tree0cf8b68172f13c5e0599d1b0054040239b69274d /disk-utils/partx.c
parentdocs: remove obsolete and unneeded comments from man-page files (diff)
downloadkernel-qcow2-util-linux-4b8dfcc8a46b5f88501b5072555c3db1eb2eb0a1.tar.gz
kernel-qcow2-util-linux-4b8dfcc8a46b5f88501b5072555c3db1eb2eb0a1.tar.xz
kernel-qcow2-util-linux-4b8dfcc8a46b5f88501b5072555c3db1eb2eb0a1.zip
partx: simplify a --verbose progress message
Reported-by: Antonio Ceballos <aceballos@gmail.com> Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/partx.c')
-rw-r--r--disk-utils/partx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disk-utils/partx.c b/disk-utils/partx.c
index c53800f88..1ba531590 100644
--- a/disk-utils/partx.c
+++ b/disk-utils/partx.c
@@ -309,7 +309,7 @@ static int del_parts(int fd, const char *device, dev_t devno,
continue;
} else if (errno == ENXIO) {
if (verbose)
- printf(_("%s: partition #%d already doesn't exist\n"), device, i);
+ printf(_("%s: partition #%d doesn't exist\n"), device, i);
continue;
}
rc = -1;