diff options
author | Alan Modra <amodra@gmail.com> | 2024-12-01 20:11:30 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2024-12-01 20:15:16 +1030 |
commit | 1959d2a1baed120a1ce87a01026f7753936cd6e7 (patch) | |
tree | 988cfa0297584d03fd11b65363dc3bded376705b /bfd | |
parent | 8ab91a033555c5faae1bcd615800670b91673731 (diff) | |
download | gdb-1959d2a1baed120a1ce87a01026f7753936cd6e7.zip gdb-1959d2a1baed120a1ce87a01026f7753936cd6e7.tar.gz gdb-1959d2a1baed120a1ce87a01026f7753936cd6e7.tar.bz2 |
Correct hpux-core.c thread_section_p signature
Fix fallout from commit 0a1b45a20eaa.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/hpux-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/hpux-core.c b/bfd/hpux-core.c index 18516e3..1b2f080 100644 --- a/bfd/hpux-core.c +++ b/bfd/hpux-core.c @@ -128,7 +128,7 @@ make_bfd_asection (bfd *abfd, const char *name, flagword flags, /* Return true if the given core file section corresponds to a thread, based on its name. */ -static int +static bool thread_section_p (bfd *abfd ATTRIBUTE_UNUSED, asection *sect, void *obj ATTRIBUTE_UNUSED) |