diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a63e0d1c5a..324394106e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990726-20:32 GMT+1 Bruno Cantero + * source/rdd/dbfntx1.c + Fixed bug under msvc + 19990726-20:20 CET Eddie Runia * tests/working/hscript/bldguest.bat Better version added. (Old version was meant for working directory) diff --git a/harbour/source/rdd/dbfntx1.c b/harbour/source/rdd/dbfntx1.c index 88d55bf1b5..bf3ad2b63b 100644 --- a/harbour/source/rdd/dbfntx1.c +++ b/harbour/source/rdd/dbfntx1.c @@ -116,11 +116,9 @@ HARBOUR HB_REQUEST_DBFNTX1( void ) HARBOUR HB_DBFNTX_GETFUNCTABLE( void ) { - USHORT * uiCount; RDDFUNCS * pTable; - *uiCount = RDDFUNCSCOUNT; - uiCount = ( USHORT * ) hb_parnl( 1 ); + *( USHORT * ) hb_parnl( 1 ) = RDDFUNCSCOUNT; pTable = ( RDDFUNCS * ) hb_parnl( 2 ); if( pTable ) hb_rddInherit( pTable, &ntxTable, &ntxSuper, 0 );