diff --git a/harbour/ChangeLog b/harbour/ChangeLog index abeb56ef5f..4304e0dcef 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-07-07 18:51 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/hbcurl/hbcurl.c + ! small fix in const casting + 2009-07-07 09:21 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * harbour/contrib/hbqt/generator/hbqtgen.prg ! Some refinements and formatting. diff --git a/harbour/contrib/hbcurl/hbcurl.c b/harbour/contrib/hbcurl/hbcurl.c index 6c6da61bea..4437b6470a 100644 --- a/harbour/contrib/hbcurl/hbcurl.c +++ b/harbour/contrib/hbcurl/hbcurl.c @@ -143,7 +143,7 @@ static HB_HASH_FUNC( hb_curl_HashKey ) /* ULONG func( const void * Value, con /* deletes a string */ static HB_HASH_FUNC( hb_curl_HashDel ) { - hb_xfree( Value ); + hb_xfree( ( void * ) Value ); HB_SYMBOL_UNUSED( HashPtr ); HB_SYMBOL_UNUSED( Cargo ); return 1;