diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/os_os2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os_os2.c b/src/os_os2.c index fb175e8c9..8bcdb8c0b 100644 --- a/src/os_os2.c +++ b/src/os_os2.c @@ -12,7 +12,7 @@ ** ** This file contains code that is specific to OS/2. ** -** $Id: os_os2.c,v 1.61 2008/11/26 19:56:48 pweilbacher Exp $ +** $Id: os_os2.c,v 1.62 2008/11/26 20:03:21 pweilbacher Exp $ */ #include "sqliteInt.h" @@ -200,6 +200,7 @@ static int os2Sync( sqlite3_file *id, int flags ){ ** no-op */ #ifdef SQLITE_NO_SYNC + UNUSED_PARAMETER(pFile); return SQLITE_OK; #else return DosResetBuffer( pFile->h ) == NO_ERROR ? SQLITE_OK : SQLITE_IOERR; |