summaryrefslogtreecommitdiff
path: root/gdb/somsolib.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2002-12-03 00:13:45 +0000
committerJoel Brobecker <brobecker@gnat.com>2002-12-03 00:13:45 +0000
commit526b5445a3317201fc78f6379e44953d19e1505a (patch)
tree7db0c81794c92d388cc486efc77a190dc3d9a053 /gdb/somsolib.c
parentf344871e4d9601abf41b0d85c158d5cafe34f19a (diff)
downloadgdb-526b5445a3317201fc78f6379e44953d19e1505a.tar.gz
* 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/somsolib.c')
-rw-r--r--gdb/somsolib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somsolib.c b/gdb/somsolib.c
index 2eb1ff5685c..6cc9f451657 100644
--- a/gdb/somsolib.c
+++ b/gdb/somsolib.c
@@ -191,7 +191,7 @@ addr_and_unwind_t;
/* When adding fields, be sure to clear them in _initialize_som_solib. */
static struct
{
- boolean is_valid;
+ int is_valid;
addr_and_unwind_t hook;
addr_and_unwind_t hook_stub;
addr_and_unwind_t load;