mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
* som.c (som_write_symbol_strings): Cast current_offset in
bfd_seek call to match param type.
This commit is contained in:
parent
916aaa1251
commit
21d17a588f
@ -1,3 +1,8 @@
|
||||
2001-09-29 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* som.c (som_write_symbol_strings): Cast current_offset in
|
||||
bfd_seek call to match param type.
|
||||
|
||||
2001-09-28 J. Brobecker <brobecker@gnat.com>
|
||||
|
||||
* som.c (som_write_symbol_strings): Fix incorrect type of
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user