diff options
author | Ian Lance Taylor <iant@google.com> | 2007-12-14 04:53:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-12-14 04:53:22 +0000 |
commit | 460c00b558bc0cf4501c514b0ff13c7d48750165 (patch) | |
tree | d2d662dea31cefd3b6c4961bf5160bc347e3e4b2 /gold/options.h | |
parent | c9b68031aafca9d95c93ebfb9bc271e1cedc9bfb (diff) | |
download | gdb-460c00b558bc0cf4501c514b0ff13c7d48750165.zip gdb-460c00b558bc0cf4501c514b0ff13c7d48750165.tar.gz gdb-460c00b558bc0cf4501c514b0ff13c7d48750165.tar.bz2 |
Fix --thread-count-middle and --thread-count-final.
Diffstat (limited to 'gold/options.h')
-rw-r--r-- | gold/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/options.h b/gold/options.h index 9cb317e..cae1b1a 100644 --- a/gold/options.h +++ b/gold/options.h @@ -466,11 +466,11 @@ class General_options void set_thread_count_middle(const char* arg) - { this->thread_count_initial_ = this->parse_thread_count(arg); } + { this->thread_count_middle_ = this->parse_thread_count(arg); } void set_thread_count_final(const char* arg) - { this->thread_count_initial_ = this->parse_thread_count(arg); } + { this->thread_count_final_ = this->parse_thread_count(arg); } void ignore(const char*) |