From 110710bac63049d86d29eaf2dc723b5ad6c0b8d2 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Tue, 29 Mar 2005 04:19:34 +0000 Subject: [PATCH] * irix-core.c (do_sections): Replace + by | in expression. (irix_core_core_file_matches_executable_p): Add ATTRIBUTE_UNUSED to unused parameters to avoid a compiler warning. --- bfd/ChangeLog | 6 ++++++ bfd/irix-core.c | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 546904e2ba..807abd0704 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2005-03-28 Joel Brobecker + + * irix-core.c (do_sections): Replace + by | in expression. + (irix_core_core_file_matches_executable_p): Add ATTRIBUTE_UNUSED + to unused parameters to avoid a compiler warning. + 2005-03-28 Mark Kettenis * netbsd-core.c: Convert to ISO C. Fix formatting. diff --git a/bfd/irix-core.c b/bfd/irix-core.c index 740907b86e..c7e1268dd9 100644 --- a/bfd/irix-core.c +++ b/bfd/irix-core.c @@ -152,7 +152,7 @@ do_sections (abfd, coreout) continue; if (!make_bfd_asection (abfd, secname, - SEC_ALLOC | SEC_LOAD+SEC_HAS_CONTENTS, + SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, vmap.v_len, vmap.v_vaddr, vmap.v_offset)) /* Fail. */ return 0; @@ -288,7 +288,8 @@ irix_core_core_file_failing_signal (abfd) static bfd_boolean irix_core_core_file_matches_executable_p (core_bfd, exec_bfd) - bfd *core_bfd, *exec_bfd; + bfd *core_bfd ATTRIBUTE_UNUSED; + bfd *exec_bfd ATTRIBUTE_UNUSED; { return TRUE; /* XXX - FIXME */ } -- 2.11.0