1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Removed a few more harmless warnings from MSVC. (CVS 6018)

FossilOrigin-Name: 72fd92bd67ed2b8e193cf3119e60d0a8f1e819c9
This commit is contained in:
shane
2008-12-11 02:58:26 +00:00
parent 103fe74315
commit 7d3846ac26
5 changed files with 21 additions and 18 deletions

View File

@@ -12,7 +12,7 @@
**
** This file contains code that is specific to windows.
**
** $Id: os_win.c,v 1.144 2008/12/10 22:30:25 shane Exp $
** $Id: os_win.c,v 1.145 2008/12/11 02:58:27 shane Exp $
*/
#include "sqliteInt.h"
#if SQLITE_OS_WIN /* This file is used for windows only */
@@ -749,7 +749,9 @@ static int winSync(sqlite3_file *id, int flags){
UNUSED_PARAMETER(id);
#endif
OSTRACE3("SYNC %d lock=%d\n", pFile->h, pFile->locktype);
#ifdef SQLITE_TEST
#ifndef SQLITE_TEST
UNUSED_PARAMETER(flags);
#else
if( flags & SQLITE_SYNC_FULL ){
sqlite3_fullsync_count++;
}