From c5bb77b169ee7e03f67b8b40cfabab8a04c3d4c0 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Wed, 18 Sep 2002 19:57:53 +0000 Subject: [PATCH] See ChangeLog entry 2002-09-18 16:00 UTC-0400 David G. Holm --- harbour/ChangeLog | 5 +++++ harbour/source/rdd/dbfcdx/dbfcdx1.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4bdf24015c..139119a270 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2002-09-18 16:00 UTC-0400 David G. Holm + * source/rdd/dbfcdx/dbfcdx1.c + ! Replaced non-existent _SORTSWAPPAGE used in hb_xgrab() type + override with the existing, and correct, LPSORTSWAPPAGE. + 2002-09-17 21:55 UTC-01 jf lefebvre (mafact) * source/rdd/dbfcdx\dbfcdx1.c ! Added needed typecasting for M$soft C diff --git a/harbour/source/rdd/dbfcdx/dbfcdx1.c b/harbour/source/rdd/dbfcdx/dbfcdx1.c index e781c6b212..e66849dff7 100644 --- a/harbour/source/rdd/dbfcdx/dbfcdx1.c +++ b/harbour/source/rdd/dbfcdx/dbfcdx1.c @@ -3306,7 +3306,7 @@ static int hb_cdxSortSwapBuildIndex( LPSORTINFO pSort ) USHORT nKeyLen; BOOL lCont; - pSort->pSwapPage = (_SORTSWAPPAGE *) hb_xgrab( pSort->nSwapPages * sizeof( SORTSWAPPAGE ) ); + pSort->pSwapPage = (LPSORTSWAPPAGE *) hb_xgrab( pSort->nSwapPages * sizeof( SORTSWAPPAGE ) ); if ( !pSort->pSwapPage ) hb_errInternal( HB_EI_ERRUNRECOV, "hb_cdxTagDoIndex: Not enough memory for index merging", "hb_cdxTagDoIndex", NULL ); @@ -6628,4 +6628,3 @@ ERRCODE hb_cdxWriteDBHeader( CDXAREAP pArea ) // ( DBENTRYP_SVP ) hb_cdxWhoCares : NULL /* end of cdxrdd.c */ -