diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 70143e7395..e64a7532cc 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-08-08 13:18 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbsqlit3/sqlite3/sqlite3.c + ! Pacified one OSX GCC unused var warning. + 2008-08-08 13:13 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/bin/postinst.sh * use libtool instead of ar to create library on Darwin diff --git a/harbour/contrib/hbsqlit3/sqlite3/sqlite3.c b/harbour/contrib/hbsqlit3/sqlite3/sqlite3.c index 03bd6e2ab4..15c023b5ae 100644 --- a/harbour/contrib/hbsqlit3/sqlite3/sqlite3.c +++ b/harbour/contrib/hbsqlit3/sqlite3/sqlite3.c @@ -19859,6 +19859,7 @@ static int full_fsync(int fd, int fullSync, int dataOnly){ */ #ifdef SQLITE_NO_SYNC rc = SQLITE_OK; + ( void ) dataOnly; #else #if HAVE_FULLFSYNC @@ -19876,6 +19877,7 @@ static int full_fsync(int fd, int fullSync, int dataOnly){ * the fcntl call every time sync is called. */ if( rc ) rc = fsync(fd); + ( void ) dataOnly; #else if( dataOnly ){