aboutsummaryrefslogtreecommitdiff
path: root/gold/options.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2007-12-08 03:05:27 +0000
committerIan Lance Taylor <iant@google.com>2007-12-08 03:05:27 +0000
commitbc2c67ffde4dd6cf884aa5fcb93e1fc8b3cb16a8 (patch)
treef67b9524da0b08c81daf5f660a1a91a46d196799 /gold/options.h
parent2fcb970637fc082a6d12666ba9a15da15a16dd9d (diff)
downloadfsf-binutils-gdb-bc2c67ffde4dd6cf884aa5fcb93e1fc8b3cb16a8.zip
fsf-binutils-gdb-bc2c67ffde4dd6cf884aa5fcb93e1fc8b3cb16a8.tar.gz
fsf-binutils-gdb-bc2c67ffde4dd6cf884aa5fcb93e1fc8b3cb16a8.tar.bz2
From Craig Silverstein: Fix error message, add this->.
Diffstat (limited to 'gold/options.h')
-rw-r--r--gold/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/options.h b/gold/options.h
index 776d3db..9cb317e 100644
--- a/gold/options.h
+++ b/gold/options.h
@@ -365,7 +365,7 @@ class General_options
set_symbolic()
{ this->symbolic_ = true; }
- void set_compress_debug_symbols(const char* arg)
+ void set_compress_debug_sections(const char* arg)
{
if (strcmp(arg, "none") == 0)
this->compress_debug_sections_ = NO_COMPRESSION;
@@ -374,7 +374,7 @@ class General_options
this->compress_debug_sections_ = ZLIB_COMPRESSION;
#endif
else
- gold_fatal(_("unsupported argument to --compress-debug-symbols: %s"),
+ gold_fatal(_("unsupported argument to --compress-debug-sections: %s"),
arg);
}