From cc28ec6162d8f06637d96cc750e3e33eff477cc8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 6 May 2008 05:54:21 +0000 Subject: Correct last patch. --- gold/output.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gold') diff --git a/gold/output.h b/gold/output.h index 89c6eeb..6c7dc39 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_; } -- cgit v1.1