From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4620 invoked by alias); 1 Apr 2003 14:18:09 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4608 invoked from network); 1 Apr 2003 14:18:09 -0000 Received: from unknown (HELO crack.them.org) (65.125.64.184) by sources.redhat.com with SMTP; 1 Apr 2003 14:18:09 -0000 Received: from nevyn.them.org ([66.93.61.169] ident=mail) by crack.them.org with asmtp (Exim 3.12 #1 (Debian)) id 190MaY-00064c-00 for ; Tue, 01 Apr 2003 08:18:10 -0600 Received: from drow by nevyn.them.org with local (Exim 3.36 #1 (Debian)) id 190MaU-0003QX-00 for ; Tue, 01 Apr 2003 09:18:06 -0500 Date: Tue, 01 Apr 2003 14:18:00 -0000 From: Daniel Jacobowitz To: gdb-patches@sources.redhat.com Subject: PATCH: Fix gdb build failure Message-ID: <20030401141806.GA13158@nevyn.them.org> Mail-Followup-To: gdb-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.1i X-SW-Source: 2003-04/txt/msg00006.txt.bz2 I changed the interface of a function in BFD yesterday and forgot to update the one call to it in GDB. Sorry 'bout that. Fixed with the attached. -- Daniel Jacobowitz MontaVista Software Debian GNU/Linux Developer 2003-04-01 Daniel Jacobowitz * symfile.c (symfile_relocate_debug_section): Update call to bfd_simple_get_relocated_section_contents. Index: symfile.c =================================================================== RCS file: /cvs/src/src/gdb/symfile.c,v retrieving revision 1.92 diff -u -p -r1.92 symfile.c --- symfile.c 27 Feb 2003 20:48:03 -0000 1.92 +++ symfile.c 1 Apr 2003 14:15:47 -0000 @@ -3573,7 +3573,7 @@ symfile_relocate_debug_section (bfd *abf all sections begin at 0. */ bfd_map_over_sections (abfd, symfile_dummy_outputs, NULL); - return bfd_simple_get_relocated_section_contents (abfd, sectp, buf); + return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL); } void