From 4e0968018b53cd4900d6e77dfdac8493fdd0a6e2 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Tue, 22 Jan 2013 10:08:03 +0100 Subject: [PATCH] textual: tiny tweaks of some error messages Signed-off-by: Benno Schulenberg --- disk-utils/mkswap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c index ab48129424..79a7328e86 100644 --- a/disk-utils/mkswap.c +++ b/disk-utils/mkswap.c @@ -494,7 +494,7 @@ main(int argc, char **argv) { #ifdef HAVE_LIBUUID opt_uuid = optarg; #else - warnx(_("warning: ignore -U (UUIDs are unsupported by %s)"), + warnx(_("warning: ignoring -U (UUIDs are unsupported by %s)"), program_invocation_short_name); #endif break; @@ -518,7 +518,7 @@ main(int argc, char **argv) { if (version != 1) errx(EXIT_FAILURE, - _("does not support swapspace version %d."), version); + _("swapspace version %d is not supported"), version); #ifdef HAVE_LIBUUID if(opt_uuid) { @@ -574,7 +574,7 @@ main(int argc, char **argv) { if (is_mounted(device_name)) errx(EXIT_FAILURE, _("error: " - "%s is mounted; will not make swapspace."), + "%s is mounted; will not make swapspace"), device_name); if (stat(device_name, &statbuf) < 0) { -- 2.47.2