From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20881 invoked by alias); 2 Dec 2002 16:48:38 -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 20874 invoked from network); 2 Dec 2002 16:48:37 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (205.232.38.116) by sources.redhat.com with SMTP; 2 Dec 2002 16:48:37 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 6568AD2D29; Mon, 2 Dec 2002 08:48:37 -0800 (PST) Date: Mon, 02 Dec 2002 08:48:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [commit] s/boolean/int/ in xcoffread.c Message-ID: <20021202164837.GA4921@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-12/txt/msg00023.txt.bz2 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 366 Hello, I committed the following change in the head branch, to fix a compilation failure that appeared on AiX. I suspect that it is a small glitch introduced after the work on booleans in bfd. 2002-12-02 J. Brobecker * xcoffread.c (read_symbol_lineno): Replace boolean by int. Fixes a compilation failure on AiX. -- Joel --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="xcoffread.c.diff" Content-length: 843 Index: xcoffread.c =================================================================== RCS file: /cvs/src/src/gdb/xcoffread.c,v retrieving revision 1.21 diff -c -3 -p -r1.21 xcoffread.c *** xcoffread.c 25 Oct 2002 22:25:55 -0000 1.21 --- xcoffread.c 2 Dec 2002 16:41:04 -0000 *************** static int *** 1634,1640 **** read_symbol_lineno (int symno) { struct objfile *objfile = this_symtab_psymtab->objfile; ! boolean xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd); struct coff_symfile_info *info = (struct coff_symfile_info *)objfile->sym_private; --- 1634,1640 ---- read_symbol_lineno (int symno) { struct objfile *objfile = this_symtab_psymtab->objfile; ! int xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd); struct coff_symfile_info *info = (struct coff_symfile_info *)objfile->sym_private; --lrZ03NoBR/3+SXJZ--