From 460c00b558bc0cf4501c514b0ff13c7d48750165 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 14 Dec 2007 04:53:22 +0000 Subject: [PATCH] Fix --thread-count-middle and --thread-count-final. --- gold/options.h | 4 ++-- 1 file 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*) -- 2.7.4