summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2007-10-15 03:33:03 +0000
committerIan Lance Taylor <iant@google.com>2007-10-15 03:33:03 +0000
commit4414ce8575b3c8898c7cb1e6eab8b9820d2431f5 (patch)
tree7d0abf0e00a54a63749e6d6f6f74520b69b7daac
parentfa97278f0f406d6fb96e6f4e81895559e4145c31 (diff)
downloadbinutils-redhat-4414ce8575b3c8898c7cb1e6eab8b9820d2431f5.tar.gz
Fix exit status.
-rw-r--r--gold/options.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/options.cc b/gold/options.cc
index 0458139a59..ef7e411f16 100644
--- a/gold/options.cc
+++ b/gold/options.cc
@@ -215,7 +215,7 @@ help(int, char**, char*, gold::Command_line*)
std::puts(options[i].doc);
}
- ::exit(true);
+ ::exit(0);
return 0;
}
@@ -226,7 +226,7 @@ int
version(int, char**, char* opt, gold::Command_line*)
{
gold::print_version(opt[0] == 'v' && opt[1] == '\0');
- ::exit(true);
+ ::exit(0);
return 0;
}
@@ -767,7 +767,7 @@ Command_line::usage()
fprintf(stderr,
_("%s: use the --help option for usage information\n"),
program_name);
- ::exit(false);
+ ::exit(1);
}
void