From fe0f32993f0e38e75571a7320bf862a66614fd61 Mon Sep 17 00:00:00 2001 From: rfm Date: Sun, 4 Feb 2007 08:48:03 +0000 Subject: [PATCH] Cast to avoid compiler warning git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24462 72102866-910b-0410-8b05-ffd578937521 --- Source/NSException.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSException.m b/Source/NSException.m index 341975464..67f815fdd 100644 --- a/Source/NSException.m +++ b/Source/NSException.m @@ -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);