diff options
Diffstat (limited to 'bfd/aoutf1.h')
-rw-r--r-- | bfd/aoutf1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/aoutf1.h b/bfd/aoutf1.h index e7aa1ed..da933cd 100644 --- a/bfd/aoutf1.h +++ b/bfd/aoutf1.h @@ -393,7 +393,7 @@ DEFUN(sunos4_core_file_p,(abfd), if (core_size > 20000) return 0; - if (bfd_seek (abfd, 0L, false) < 0) return 0; + if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) < 0) return 0; mergem = (struct mergem *)bfd_zalloc (abfd, core_size + sizeof (struct mergem)); if (mergem == NULL) { |