2011-07-16 14:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/contrib/hbct/numbase.c
    * casting to pacify warning
This commit is contained in:
Przemyslaw Czerpak
2011-07-16 12:02:27 +00:00
parent ec4083013d
commit d916e80ea2
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-07-16 14:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/hbct/numbase.c
* casting to pacify warning
2011-07-16 13:51 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/utils/hbtest/rt_str.prg
! disabled workaround for 64 bit [U]LONG values in Win64 builds.

View File

@@ -112,7 +112,7 @@ HB_FUNC( CTON )
hb_retnint( ( HB_U32 ) nValue );
}
else if( ( HB_MAXINT ) nValue < 0 )
hb_retnd( nValue );
hb_retnd( ( double ) nValue );
else
hb_retnint( nValue );
#endif