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.
This commit is contained in:
Viktor Szakats
2008-08-08 11:29:38 +00:00
parent cb2323a9fe
commit 36d09bf5aa
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
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

View File

@@ -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 ){