When i compile harbour from SVN source i got this error:

c:\projetos\harbour\src\vm\dynsym.c(547) : error C2440: '=' : cannot convert
from 'void *' to 'PDYNHB_ITEM'
        Conversion from 'void*' to pointer to non-'void' requires an
explicit cast
In dynsym.c(547):

s_pDynIndex = hb_xrealloc( s_pDynIndex, iSymNum * sizeof( DYNHB_ITEM ) );

solution:

s_pDynIndex = (PDYNHB_ITEM)hb_xrealloc( s_pDynIndex, iSymNum * sizeof(
DYNHB_ITEM ) );

Sorry for my poor english.

Daniel
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to