* xcoffread.c (read_symbol_lineno): Replace type boolean by int.

Fixes a compilation failure on AiX.
This commit is contained in:
Joel Brobecker 2002-12-02 16:45:05 +00:00
parent f4ede9bc95
commit 7af35dad04
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-12-02 J. Brobecker <brobecker@gnat.com>
* xcoffread.c (read_symbol_lineno): Replace boolean by int.
Fixes a compilation failure on AiX.
2002-12-02 J. Brobecker <brobecker@gnat.com>
* config/powerpc/aix432.mh (NATDEPFILES): Add a comment explaining

View file

@ -1634,7 +1634,7 @@ static int
read_symbol_lineno (int symno)
{
struct objfile *objfile = this_symtab_psymtab->objfile;
boolean xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd);
int xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd);
struct coff_symfile_info *info =
(struct coff_symfile_info *)objfile->sym_private;