From: Sami Kerola Date: Wed, 3 Sep 2014 19:46:29 +0000 (+0100) Subject: mountpoint: simplify if statement X-Git-Tag: v2.26-rc1~447^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee5de88c5169cbc658f1a4b45a32365bfa34626b;p=thirdparty%2Futil-linux.git mountpoint: simplify if statement Returning straight after print_devno() makes the code to be more obvious and removes need for long else statement. Signed-off-by: Sami Kerola --- diff --git a/sys-utils/mountpoint.c b/sys-utils/mountpoint.c index 4161d206f5..0aaa290fea 100644 --- a/sys-utils/mountpoint.c +++ b/sys-utils/mountpoint.c @@ -132,7 +132,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out) int main(int argc, char **argv) { - int c, rc = 0; + int c; struct mountpoint_control ctl = { 0 }; static const struct option longopts[] = { @@ -186,18 +186,15 @@ int main(int argc, char **argv) return EXIT_FAILURE; } if (ctl.dev_devno) - rc = print_devno(&ctl); - else { - if (dir_to_device(&ctl)) { - if (!ctl.quiet) - printf(_("%s is not a mountpoint\n"), ctl.path); - return EXIT_FAILURE; - } - if (ctl.fs_devno) - printf("%u:%u\n", major(ctl.dev), minor(ctl.dev)); - else if (!ctl.quiet) - printf(_("%s is a mountpoint\n"), ctl.path); + return print_devno(&ctl) ? EXIT_FAILURE : EXIT_SUCCESS; + if (dir_to_device(&ctl)) { + if (!ctl.quiet) + printf(_("%s is not a mountpoint\n"), ctl.path); + return EXIT_FAILURE; } - - return rc ? EXIT_FAILURE : EXIT_SUCCESS; + if (ctl.fs_devno) + printf("%u:%u\n", major(ctl.dev), minor(ctl.dev)); + else if (!ctl.quiet) + printf(_("%s is a mountpoint\n"), ctl.path); + return EXIT_SUCCESS; }