diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e3a562233b..7d8820deb8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-09-30 17:12 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) + * harbour/contrib/rddsdd/sqlmix.c + ! fixed typo + 2010-09-30 11:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg * utils/hbrun/hbrun.rc diff --git a/harbour/contrib/rddsql/sqlmix.c b/harbour/contrib/rddsql/sqlmix.c index c9178c9b7e..85d90e8aef 100644 --- a/harbour/contrib/rddsql/sqlmix.c +++ b/harbour/contrib/rddsql/sqlmix.c @@ -1331,7 +1331,7 @@ static HB_ERRCODE sqlmixGoTop( SQLMIXAREAP pArea ) retval = SELF_GOTO( ( AREAP ) pArea, pArea->pTag->CurKey ? pArea->pTag->CurKey->rec : 0 ); if ( retval != HB_FAILURE && pArea->sqlarea.fPositioned ) - retval = SELF_SKIPFILTER( ( AREAP ) pArea, -1 ); + retval = SELF_SKIPFILTER( ( AREAP ) pArea, 1 ); return retval; }