diff --git a/harbour/ChangeLog b/harbour/ChangeLog index cd9cea1229..2544903d04 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-02-20 18:36 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/hbsqlit3/hbsqlit3.c + ! fixed to work without [U]LONGLONG defined in hbdefs.h + 2010-02-20 18:05 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/vm/task.c ! fixed casting for C++ builds diff --git a/harbour/contrib/hbsqlit3/hbsqlit3.c b/harbour/contrib/hbsqlit3/hbsqlit3.c index 51772e0632..abf9e0527d 100644 --- a/harbour/contrib/hbsqlit3/hbsqlit3.c +++ b/harbour/contrib/hbsqlit3/hbsqlit3.c @@ -62,8 +62,8 @@ /* TOFIX: verify the exact SQLITE3 version */ #if SQLITE_VERSION_NUMBER <= 3004001 -#define sqlite3_int64 LONGLONG -#define sqlite3_uint64 ULONGLONG +#define sqlite3_int64 HB_LONGLONG +#define sqlite3_uint64 HB_ULONGLONG #endif #define HB_SQLITE3_DB 6000001