2010-02-09 09:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbfbird/firebird.c
    ! Fixed warning after recent GC conversion on 64-bit non-Windows
      platforms.
This commit is contained in:
Viktor Szakats
2010-02-09 08:35:38 +00:00
parent 02f78e6883
commit 9bdccf121d
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-02-09 09:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbfbird/firebird.c
! Fixed warning after recent GC conversion on 64-bit non-Windows
platforms.
2010-02-09 04:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* include/hbdefs.h
! Fixed missing HB_EXTERN_*

View File

@@ -114,7 +114,7 @@ static isc_db_handle hb_FB_db_handle_par( int iParam )
{
void ** ph = ( void ** ) hb_parptrGC( &s_gcFB_db_handleFuncs, iParam );
return ph ? ( isc_db_handle ) ( HB_PTRDIFF ) * ph : NULL;
return ( isc_db_handle ) ( HB_PTRDIFF ) ( ph ? * ph : 0 );
}
/* API wrappers */