diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 809c164ab8..d45517fc37 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-04-20 20:25 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/common/hbver.c + * added missing const to function return type + 2009-04-20 20:17 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbsqlit3/hbsqlit3.c * updated to compile with older then SQLITE3.6.1 libraries diff --git a/harbour/source/common/hbver.c b/harbour/source/common/hbver.c index bae0d8b23d..4bdaeee8af 100644 --- a/harbour/source/common/hbver.c +++ b/harbour/source/common/hbver.c @@ -218,7 +218,7 @@ const char * hb_verCPU( void ) return HB_CPU_STR; } -char * hb_verHostCPU( void ) +const char * hb_verHostCPU( void ) { HB_TRACE(HB_TR_DEBUG, ("hb_verHostCPU()"));