summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2008-05-06 05:54:21 +0000
committerIan Lance Taylor <ian@airs.com>2008-05-06 05:54:21 +0000
commitf564b46aadd48563b2afba24822a75af628ed291 (patch)
treef6ea0fe2db84613b335b60ca7416b9aa2c5a82e0
parent04f8ea999299bbaff536b37f770004955da38ecc (diff)
downloadbinutils-redhat-f564b46aadd48563b2afba24822a75af628ed291.tar.gz
Correct last patch.
-rw-r--r--gold/output.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/output.h b/gold/output.h
index 89c6eeb448..6c7dc394ef 100644
--- a/gold/output.h
+++ b/gold/output.h
@@ -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_;
}