Fix --thread-count-middle and --thread-count-final.

This commit is contained in:
Ian Lance Taylor 2007-12-14 04:53:22 +00:00
parent c9b68031aa
commit 460c00b558
1 changed files with 2 additions and 2 deletions

View File

@ -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*)