From 7f243e3900341a8eec4510588a125b91166397da Mon Sep 17 00:00:00 2001 From: Bruno Cantero Date: Mon, 26 Jul 1999 18:53:01 +0000 Subject: [PATCH] ChangeLogTag:19990726-20:32 GMT+1 Bruno Cantero --- harbour/ChangeLog | 4 ++++ harbour/source/rdd/dbfntx1.c | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) 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 );