From: Ian Lance Taylor Date: Tue, 6 May 2008 05:54:21 +0000 (+0000) Subject: Correct last patch. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc28ec6162d8f06637d96cc750e3e33eff477cc8;p=binutils-gdb.git Correct last patch. --- diff --git a/gold/output.h b/gold/output.h index 89c6eeb4487..6c7dc394ef4 100644 --- a/gold/output.h +++ b/gold/output.h @@ -1011,9 +1011,9 @@ class Output_reloc { 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_; }