mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Cast to avoid compiler warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24462 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c33d2fd0e0
commit
af0d4afdc3
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ static void find_address (bfd *abfd, asection *section,
|
|||
return;
|
||||
}
|
||||
|
||||
address = (bfd_vma) info->theAddress;
|
||||
address = (bfd_vma) (intptr_t)info->theAddress;
|
||||
|
||||
vma = bfd_get_section_vma (abfd, section);
|
||||
size = bfd_get_section_size (section);
|
||||
|
|
Loading…
Reference in a new issue