From: Ian Lance Taylor Date: Fri, 14 Dec 2007 04:53:22 +0000 (+0000) Subject: Fix --thread-count-middle and --thread-count-final. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=460c00b558bc0cf4501c514b0ff13c7d48750165;p=binutils-gdb.git Fix --thread-count-middle and --thread-count-final. --- diff --git a/gold/options.h b/gold/options.h index 9cb317e54f0..cae1b1a4750 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*)