diff options
author | Joel Brobecker <brobecker@gnat.com> | 2002-12-03 00:13:45 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2002-12-03 00:13:45 +0000 |
commit | 504d5c7e6af52a59551dfa0b4a008f730eec5203 (patch) | |
tree | 873bac0c389fb263f87b2b491c07b9205f637bb8 /gdb/hpread.c | |
parent | 07c0b9a747acfd63ec940fdd8cc87ddcb8e98ece (diff) | |
download | gdb-504d5c7e6af52a59551dfa0b4a008f730eec5203.zip gdb-504d5c7e6af52a59551dfa0b4a008f730eec5203.tar.gz gdb-504d5c7e6af52a59551dfa0b4a008f730eec5203.tar.bz2 |
* somsolib.c (dld_cache): Replace boolean by int for field is_valid.
Fixes a build failure on HP/UX.
* hpread.c (told_objfile): Replace boolean type by int. Fixes a build
failure on HP/UX.
(hpread_has_name): Advance declaration to avoid a compilation warning.
(pst_syms_count): Add missing variable type. By change, the compiler
was defaulting to int, which seems a good choice. Fixes a compilation
warning.
(pst_syms_size): Likewise.
Diffstat (limited to 'gdb/hpread.c')
-rw-r--r-- | gdb/hpread.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/hpread.c b/gdb/hpread.c index 0011c31..b2e64f4 100644 --- a/gdb/hpread.c +++ b/gdb/hpread.c @@ -220,6 +220,8 @@ static unsigned long hpread_get_line (sltpointer, struct objfile *); static CORE_ADDR hpread_get_location (sltpointer, struct objfile *); +int hpread_has_name (enum dntt_entry_type kind); + static void hpread_psymtab_to_symtab_1 (struct partial_symtab *); void hpread_psymtab_to_symtab (struct partial_symtab *); @@ -596,11 +598,11 @@ pst_syms_struct; static pst_syms_struct *pst_syms_array = 0; -static pst_syms_count = 0; -static pst_syms_size = 0; +static int pst_syms_count = 0; +static int pst_syms_size = 0; /* used by the TELL_OBJFILE macro */ -static boolean told_objfile = 0; +static int told_objfile = 0; /* Set up psymtab symbol index stuff */ static void |