diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1994-04-04 17:59:36 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1994-04-04 17:59:36 +0000 |
commit | 3e2993b648bd7d0761ac19eda27ec38dcc166f60 (patch) | |
tree | e4c1cfc2a38705efbcf34959f7b95a07af1c1a44 /bfd | |
parent | 749a663dba22525e6a13ff9579df02c1051ee8ca (diff) | |
download | gdb-3e2993b648bd7d0761ac19eda27ec38dcc166f60.zip gdb-3e2993b648bd7d0761ac19eda27ec38dcc166f60.tar.gz gdb-3e2993b648bd7d0761ac19eda27ec38dcc166f60.tar.bz2 |
* aix386-core.c (aix386_bfd_is_local_label): Correct cast from
asection to asymbol.
* ptrace-core.c (ptrace_unix_bfd_is_local_label): Correct cast from
bfd to asymbol.
* trad-core.c (trad_unix_bfd_is_local_label): Correct cast from
asection to asymbol.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 9 | ||||
-rw-r--r-- | bfd/aix386-core.c | 2 | ||||
-rw-r--r-- | bfd/ptrace-core.c | 2 | ||||
-rw-r--r-- | bfd/trad-core.c | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9eb9f46..2ec125a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +Mon Apr 4 10:56:45 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * aix386-core.c (aix386_bfd_is_local_label): Correct cast from + asection to asymbol. + * ptrace-core.c (ptrace_unix_bfd_is_local_label): Correct cast from + bfd to asymbol. + * trad-core.c (trad_unix_bfd_is_local_label): Correct cast from + asection to asymbol. + Sun Apr 3 18:27:29 1994 Jeffrey A. Law (law@snake.cs.utah.edu) * som.c (som_slurp_string_table): Use malloc to allocate space diff --git a/bfd/aix386-core.c b/bfd/aix386-core.c index d566546..99c015e 100644 --- a/bfd/aix386-core.c +++ b/bfd/aix386-core.c @@ -308,7 +308,7 @@ aix386_core_file_matches_executable_p (core_bfd, exec_bfd) #define aix386_bfd_copy_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false) #define aix386_bfd_is_local_label \ - ((boolean (*) PARAMS ((bfd *, asection *))) bfd_false) + ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false) #define aix386_bfd_free_cached_info bfd_true /* If somebody calls any byte-swapping routines, shoot them. */ diff --git a/bfd/ptrace-core.c b/bfd/ptrace-core.c index ba9a54a..a712032 100644 --- a/bfd/ptrace-core.c +++ b/bfd/ptrace-core.c @@ -254,7 +254,7 @@ ptrace_unix_core_file_matches_executable_p (core_bfd, exec_bfd) #define ptrace_unix_bfd_copy_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false) #define ptrace_unix_bfd_is_local_label \ - ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false) + ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false) #define ptrace_unix_bfd_free_cached_info bfd_true /* If somebody calls any byte-swapping routines, shoot them. */ diff --git a/bfd/trad-core.c b/bfd/trad-core.c index 1dbd881..9e04863 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -344,7 +344,7 @@ trad_unix_core_file_matches_executable_p (core_bfd, exec_bfd) #define trad_unix_bfd_copy_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false) #define trad_unix_bfd_is_local_label \ - ((boolean (*) PARAMS ((bfd *, asection *))) bfd_false) + ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false) #define trad_unix_bfd_free_cached_info bfd_true /* If somebody calls any byte-swapping routines, shoot them. */ |