summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenno Schulenberg2012-08-29 21:32:22 +0200
committerKarel Zak2012-09-04 17:27:50 +0200
commite9e7698eb4a33b647a54676d33b10191a3374839 (patch)
treecac78bc9cd239e7fdf57a5abf02d6e6e8246d0d2
parenttextual: fix typos in messages (diff)
downloadkernel-qcow2-util-linux-e9e7698eb4a33b647a54676d33b10191a3374839.tar.gz
kernel-qcow2-util-linux-e9e7698eb4a33b647a54676d33b10191a3374839.tar.xz
kernel-qcow2-util-linux-e9e7698eb4a33b647a54676d33b10191a3374839.zip
textual: add missing comma and colon in some help texts
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
-rw-r--r--misc-utils/lslocks.c2
-rw-r--r--sys-utils/losetup.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/misc-utils/lslocks.c b/misc-utils/lslocks.c
index 45fb6de97..820f5dcfa 100644
--- a/misc-utils/lslocks.c
+++ b/misc-utils/lslocks.c
@@ -481,7 +481,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
fputs(_(" -p, --pid <pid> process id\n"
" -o, --output <list> define which output columns to use\n"
" -n, --noheadings don't print headings\n"
- " -r --raw use the raw output format\n"
+ " -r, --raw use the raw output format\n"
" -u, --notruncate don't truncate text in columns\n"
" -h, --help display this help and exit\n"
" -V, --version output version information and exit\n"), out);
diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c
index fdcc0beeb..9aeb9ec8a 100644
--- a/sys-utils/losetup.c
+++ b/sys-utils/losetup.c
@@ -351,7 +351,7 @@ int main(int argc, char **argv)
if (optind >= argc)
errx(EXIT_FAILURE, _("no loop device specified"));
if (loopcxt_set_device(&lc, argv[optind]))
- err(EXIT_FAILURE, _("%s failed to use device"),
+ err(EXIT_FAILURE, _("%s: failed to use device"),
argv[optind]);
optind++;