* xcoffread.c (read_symbol_lineno): Replace type boolean by int.
authorJoel Brobecker <brobecker@gnat.com>
Mon, 2 Dec 2002 16:45:05 +0000 (16:45 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 2 Dec 2002 16:45:05 +0000 (16:45 +0000)
       Fixes a compilation failure on AiX.

gdb/ChangeLog
gdb/xcoffread.c

index a35fe68..a67a4cb 100644 (file)
@@ -1,5 +1,10 @@
 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
        why aix-thread.o is not listed.
 
index 140161f..87329f1 100644 (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;