From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Lance Taylor To: hjl@nynexst.com Cc: gas2@cygnus.com Subject: Typo in Fri Sep 23 15:15:31 1994 changes for elfcode.h Date: Sun, 25 Sep 1994 19:49:00 -0000 Message-id: <9409260249.AA15621@tweedledumb.cygnus.com> References: <9409260036.AA07497@titanic.nynexst.com> X-SW-Source: 1994/msg00111.html From: hjl@nynexst.com (H.J. Lu) Date: Sun, 25 Sep 94 20:37:23 EDT - BFD_ASSERT (phdr_map == phdr_off + phdr_size); + BFD_ASSERT (phdr_map < phdr_off + phdr_size); ^^^ Should that be + BFD_ASSERT (phdr_map <= phdr_off + phdr_size); Yes, it certainly should. I checked that in for somebody in a hurry before leaving for the weekend--I should have known better. Every time you think you don't need to test something, you get nailed. Ian