summaryrefslogtreecommitdiffstats
path: root/libfdisk
diff options
context:
space:
mode:
authorBenno Schulenberg2014-09-22 22:15:34 +0200
committerKarel Zak2014-10-01 09:37:05 +0200
commit8d7a6285ecd8b5c831b5f10af69b44b1d4cabd4b (patch)
tree7173fac8cdef9916e581c2a3683651ddc0323b9a /libfdisk
parenttextual: use a somewhat clearer and more standard failure message (diff)
downloadkernel-qcow2-util-linux-8d7a6285ecd8b5c831b5f10af69b44b1d4cabd4b.tar.gz
kernel-qcow2-util-linux-8d7a6285ecd8b5c831b5f10af69b44b1d4cabd4b.tar.xz
kernel-qcow2-util-linux-8d7a6285ecd8b5c831b5f10af69b44b1d4cabd4b.zip
textual: add a comma for clarity, plus some other tweaks
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'libfdisk')
-rw-r--r--libfdisk/src/context.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libfdisk/src/context.c b/libfdisk/src/context.c
index 493114546..4031f0b2f 100644
--- a/libfdisk/src/context.c
+++ b/libfdisk/src/context.c
@@ -363,10 +363,10 @@ static int warn_wipe(struct fdisk_context *cxt)
if (blkid_probe_lookup_value(pr, "TYPE", &name, 0) == 0 ||
blkid_probe_lookup_value(pr, "PTTYPE", &name, 0) == 0) {
fdisk_warnx(cxt, _(
- "%s: device contains a valid '%s' signature, it's "
- "strongly recommended to wipe the device by command wipefs(8) "
- "if this setup is unexpected to avoid "
- "possible collisions."), cxt->dev_path, name);
+ "%s: device contains a valid '%s' signature; it is "
+ "strongly recommended to wipe the device with "
+ "wipefs(8) if this is unexpected, in order to "
+ "avoid possible collisions"), cxt->dev_path, name);
rc = 1;
}
}