2012-09-05 09:29 UTC+0200 Viktor Szakats (harbour syenar.net)

* contrib/rddads/adsx.c
    ! fixed wrong cast causing compiler warning
This commit is contained in:
Viktor Szakats
2012-09-05 07:30:27 +00:00
parent 04b92d3824
commit cb8e9dfc45
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-05 09:29 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/rddads/adsx.c
! fixed wrong cast causing compiler warning
2012-09-04 22:05 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/3rd/sqlite3/sqlite3.*
* contrib/3rd/sqlite3/sqlite3.hbp

View File

@@ -608,7 +608,7 @@ static PMIXUPDATE mixUpdateCreate( ADSXAREAP pArea )
PMIXKEY pKey = mixKeyEval( pTag, pArea );
HB_ULONG ulKeyPos;
pUpdate[ iTag ] = mixFindKey( pTag, pKey, &ulKeyPos ) ? ulKeyPos : ( HB_LONG ) -1;
pUpdate[ iTag ] = mixFindKey( pTag, pKey, &ulKeyPos ) ? ulKeyPos : ( HB_ULONG ) -1;
mixKeyFree( pKey );
pTag = pTag->pNext;