diff options
Diffstat (limited to 'ext/async/sqlite3async.c')
-rw-r--r-- | ext/async/sqlite3async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/async/sqlite3async.c b/ext/async/sqlite3async.c index 586a749c8..c2532b9c0 100644 --- a/ext/async/sqlite3async.c +++ b/ext/async/sqlite3async.c @@ -10,7 +10,7 @@ ** ************************************************************************* ** -** $Id: sqlite3async.c,v 1.3 2009/04/24 10:13:06 danielk1977 Exp $ +** $Id: sqlite3async.c,v 1.4 2009/04/25 08:39:15 danielk1977 Exp $ ** ** This file contains the implementation of an asynchronous IO backend ** for SQLite. @@ -1550,7 +1550,7 @@ static void asyncWriterThread(void){ async_mutex_leave(ASYNC_MUTEX_QUEUE); holdingMutex = 0; if( async.ioDelay>0 ){ - pVfs->xSleep(pVfs, async.ioDelay); + pVfs->xSleep(pVfs, async.ioDelay*1000); }else{ async_sched_yield(); } |