* 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 a35fe68c8cf9995c10f7328abec1f95d00957f07..a67a4cbc1473384d48c7186286454772c3d537a7 100644 (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
index 140161f7341796c10d8da6a1370418b279af5b56..87329f1c1c1629e3ae6e8de45464f94957f6738b 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;