summaryrefslogtreecommitdiff
path: root/gdb/xcoffread.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2002-12-02 16:45:05 +0000
committerJoel Brobecker <brobecker@gnat.com>2002-12-02 16:45:05 +0000
commitf8b1f979abbb331e918c29883dd4867a5e865d6b (patch)
tree3ad2e0d5257947091990f0f73ef56c807b39380a /gdb/xcoffread.c
parent1ce1570a380f3382895f33fc009096b7810b204e (diff)
downloadgdb-f8b1f979abbb331e918c29883dd4867a5e865d6b.tar.gz
* xcoffread.c (read_symbol_lineno): Replace type boolean by int.
Fixes a compilation failure on AiX.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r--gdb/xcoffread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index 140161f7341..87329f1c1c1 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -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;