Correct last patch.

This commit is contained in:
Ian Lance Taylor 2008-05-06 05:54:21 +00:00
parent d98bc257cf
commit cc28ec6162
1 changed files with 2 additions and 2 deletions

View File

@ -1011,9 +1011,9 @@ class Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
{
int i = this->rel_.compare(r2.rel_);
if (i < 0)
return false;
else if (i > 0)
return true;
else if (i > 0)
return false;
else
return this->addend_ < r2.addend_;
}