aboutsummaryrefslogtreecommitdiff
path: root/bfd/som.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-09-29 06:13:53 +0000
committerAlan Modra <amodra@gmail.com>2001-09-29 06:13:53 +0000
commit21d17a588f70a57acf7d97def74a550e2925600e (patch)
tree5970f8b6f0aded7eef4b15ab4f242192f0df0ddc /bfd/som.c
parent916aaa1251eb953dc9ad6b5a9d1176f6eeae444e (diff)
downloadgdb-21d17a588f70a57acf7d97def74a550e2925600e.zip
gdb-21d17a588f70a57acf7d97def74a550e2925600e.tar.gz
gdb-21d17a588f70a57acf7d97def74a550e2925600e.tar.bz2
* som.c (som_write_symbol_strings): Cast current_offset in
bfd_seek call to match param type.
Diffstat (limited to 'bfd/som.c')
-rw-r--r--bfd/som.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/som.c b/bfd/som.c
index e955c09..0f1fc09 100644
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -3189,7 +3189,7 @@ som_write_symbol_strings (abfd, current_offset, syms, num_syms, string_sizep,
/* Seek to the start of the space strings in preparation for writing
them out. */
- if (bfd_seek (abfd, current_offset, SEEK_SET) != 0)
+ if (bfd_seek (abfd, (file_ptr) current_offset, SEEK_SET) != 0)
return false;
if (compilation_unit)