From e5354ca12a232b3f97726214254a868771cb70d1 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 11 Sep 2015 16:35:14 -0500 Subject: Replace toys.exithelp with help_exit() in lib. --- toys/other/losetup.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'toys/other/losetup.c') diff --git a/toys/other/losetup.c b/toys/other/losetup.c index 9568627e..a40d9e42 100644 --- a/toys/other/losetup.c +++ b/toys/other/losetup.c @@ -180,10 +180,8 @@ void losetup_main(void) } else { char *file = (toys.optflags & (FLAG_d|FLAG_c)) ? NULL : toys.optargs[1]; - if (!toys.optc || (file && toys.optc != 2)) { - toys.exithelp++; - perror_exit("needs %d arg%s", 1+!!file, file ? "s" : ""); - } + if (!toys.optc || (file && toys.optc != 2)) + help_exit("needs %d arg%s", 1+!!file, file ? "s" : ""); for (s = toys.optargs; *s; s++) { loopback_setup(*s, file); if (file) break; -- cgit v1.2.3