summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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++;