aboutsummaryrefslogtreecommitdiff
path: root/bfd/lynx-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/lynx-core.c')
-rw-r--r--bfd/lynx-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/lynx-core.c b/bfd/lynx-core.c
index d9d88d2..90b8e26 100644
--- a/bfd/lynx-core.c
+++ b/bfd/lynx-core.c
@@ -102,11 +102,11 @@ lynx_core_file_p (bfd *abfd)
/* Get the pss entry from the core file */
- if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
+ if (bfd_seek (abfd, 0, SEEK_SET) != 0)
return NULL;
amt = sizeof pss;
- if (bfd_bread ((void *) &pss, amt, abfd) != amt)
+ if (bfd_read (&pss, amt, abfd) != amt)
{
/* Too small to be a core file */
if (bfd_get_error () != bfd_error_system_call)