From 94e3365b8f8eead46ec0b494ce513b7915fb6c04 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 22 Dec 2007 15:44:23 +0000 Subject: perror_nomsg: don't print extra colon losetup: print name of loop device in error messages --- util-linux/losetup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util-linux/losetup.c') diff --git a/util-linux/losetup.c b/util-linux/losetup.c index a9ecfd58b..d521b7b88 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.c @@ -37,14 +37,14 @@ int losetup_main(int argc, char **argv) if (argc != 1) bb_show_usage(); if (del_loop(argv[0])) - bb_perror_nomsg_and_die(); + bb_simple_perror_msg_and_die(argv[0]); return EXIT_SUCCESS; } if (argc == 2) { /* -o or no option */ if (set_loop(&argv[0], argv[1], offset) < 0) - bb_perror_nomsg_and_die(); + bb_simple_perror_msg_and_die(argv[0]); return EXIT_SUCCESS; } @@ -52,7 +52,7 @@ int losetup_main(int argc, char **argv) /* -o or no option */ s = query_loop(argv[0]); if (!s) - bb_perror_nomsg_and_die(); + bb_simple_perror_msg_and_die(argv[0]); printf("%s: %s\n", argv[0], s); if (ENABLE_FEATURE_CLEAN_UP) free(s); -- cgit v1.2.3