diff --git a/harbour/ChangeLog b/harbour/ChangeLog index db23d99b71..27f1a76d24 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-03-27 18:35 UTC+0100 Antonio Linares + * source/rdd/dbcmd.c + * contrib/rdd_ads/adsfunc.c + * Minor type casting fixes for MSVC + 2003-03-26 16:55 UTC+0300 Alexander Kresin * source/rdd/dbcmd.c ! Bug fixed related to COPY TO .. FIELDS ..., reported by Lorenzo Fiorini @@ -30,9 +35,9 @@ + Added RDD test, contributed by Randy Portnoff 2003-03-25 16:46 UTC+0100 Martin Vogel - * contrib/libct/dattime2.prg + * contrib/libct/dattime2.prg * bug fix in function addmonth() - + 2003-03-24 15:35 UTC+0300 Alexander Kresin * source/rdd/dbcmd.c ! bug fixed with improper using of hb_strUpper() - reported by Lorenzo Fiorini diff --git a/harbour/contrib/rdd_ads/adsfunc.c b/harbour/contrib/rdd_ads/adsfunc.c index da5b5dc560..9c2e37d332 100644 --- a/harbour/contrib/rdd_ads/adsfunc.c +++ b/harbour/contrib/rdd_ads/adsfunc.c @@ -1291,7 +1291,7 @@ HB_FUNC( ADSROLLBACKTRANSACTION ) HB_FUNC( ADSFAILEDTRANSACTIONRECOVERY ) { - hb_retnl( AdsFailedTransactionRecovery( (ISCHAR(1))? hb_parc(1) : NULL ) ); + hb_retnl( AdsFailedTransactionRecovery( (ISCHAR(1))? ( unsigned char * ) hb_parc(1) : NULL ) ); } HB_FUNC( ADSINTRANSACTION ) @@ -1362,4 +1362,4 @@ HB_FUNC(ADSUSEDICTIONARY) hb_retl(bOld); } -#endif +#endif \ No newline at end of file diff --git a/harbour/source/rdd/dbcmd.c b/harbour/source/rdd/dbcmd.c index 0bfc364a65..b8cd01a25c 100644 --- a/harbour/source/rdd/dbcmd.c +++ b/harbour/source/rdd/dbcmd.c @@ -3603,7 +3603,7 @@ static LPAREANODE GetTheOtherArea( char *szDriver, char * szFileName, BOOL creat USHORT i; int iLen; char *ptr; - char *szFieldName = hb_xgrab( ((AREAP) s_pCurrArea->pArea)->uiMaxFieldNameLength+1 ); + char *szFieldName = ( char * ) hb_xgrab( ((AREAP) s_pCurrArea->pArea)->uiMaxFieldNameLength+1 ); uiFields = ( USHORT ) hb_arrayLen( pFields ); for ( i=0; i