From: Jim Meyering Date: Thu, 24 Apr 2003 13:50:27 +0000 (+0000) Subject: (tsort): Remove unnecessary test of have_read_stdin. X-Git-Tag: v5.0.1~652 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=034fcf16e384e5e94cdfa05398f9ad44ab399f6d;p=thirdparty%2Fcoreutils.git (tsort): Remove unnecessary test of have_read_stdin. (main): Minor syntactic clean-up. --- diff --git a/src/tsort.c b/src/tsort.c index d7573de821..52f0550e31 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -534,8 +534,7 @@ tsort (const char *file) if (n_strings > 0) { /* The input contains a loop. */ - error (0, 0, _("%s: input contains a loop:"), - (have_read_stdin ? "-" : file)); + error (0, 0, _("%s: input contains a loop:"), file); exit_status = 1; /* Print the loop and remove a relation to break it. */ @@ -574,16 +573,13 @@ main (int argc, char **argv) have_read_stdin = 0; - if (optind + 1 < argc) + if (1 < argc - optind) { error (0, 0, _("only one argument may be specified")); usage (EXIT_FAILURE); } - if (optind < argc) - tsort (argv[optind]); - else - tsort ("-"); + tsort (optind == argc ? "-" : argv[optind]); if (have_read_stdin && fclose (stdin) == EOF) error (EXIT_FAILURE, errno, _("standard input"));