diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/os_unix.c | 3 | ||||
-rw-r--r-- | src/os_win.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index e0a39882e..4f263bcdd 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3570,9 +3570,6 @@ static int unixFileControl(sqlite3_file *id, int op, void *pArg){ return proxyFileControl(id,op,pArg); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) */ - case SQLITE_FCNTL_SYNC_OMITTED: { - return SQLITE_OK; /* A no-op */ - } } return SQLITE_NOTFOUND; } diff --git a/src/os_win.c b/src/os_win.c index e570d7fba..7269f436d 100644 --- a/src/os_win.c +++ b/src/os_win.c @@ -2184,9 +2184,6 @@ static int winFileControl(sqlite3_file *id, int op, void *pArg){ *(char**)pArg = sqlite3_mprintf("win32"); return SQLITE_OK; } - case SQLITE_FCNTL_SYNC_OMITTED: { - return SQLITE_OK; - } case SQLITE_FCNTL_WIN32_AV_RETRY: { int *a = (int*)pArg; if( a[0]>0 ){ |