From 5656ba2c217cff434621d6caf135cbda5ae92ac4 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 10 Mar 2015 06:57:14 -0700 Subject: Move nothing to do warning to main PR binutils/18101 * readelf.c (parse_args): Move nothing to do warning to ... (main): Here. --- binutils/readelf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'binutils/readelf.c') diff --git a/binutils/readelf.c b/binutils/readelf.c index 771d29d..20cfc47 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -4232,11 +4232,6 @@ parse_args (int argc, char ** argv) && !do_section_groups && !do_archive_index && !do_dyn_syms) usage (stderr); - else if (argc < 3 || (do_wide && argc < 4)) - { - warn (_("Nothing to do.\n")); - usage (stderr); - } } static const char * @@ -16131,6 +16126,11 @@ main (int argc, char ** argv) if (optind < (argc - 1)) show_name = 1; + else if (optind >= argc) + { + warn (_("Nothing to do.\n")); + usage (stderr); + } err = 0; while (optind < argc) -- cgit v1.1