diff options
Diffstat (limited to 'src/3rdparty/sqlite/os.c')
-rw-r--r-- | src/3rdparty/sqlite/os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/os.c b/src/3rdparty/sqlite/os.c index d090092de..afbf7e06c 100644 --- a/src/3rdparty/sqlite/os.c +++ b/src/3rdparty/sqlite/os.c @@ -1248,7 +1248,7 @@ int isNT(void){ ** A lock is obtained on the first byte of the lock range before actquiring ** either a read lock or a write lock. This prevents two processes from ** attempting to get a lock at a same time. The semantics of -** sqliteOsReadLock() retquire that if there is already a write lock, that +** sqliteOsReadLock() require that if there is already a write lock, that ** lock is converted into a read lock atomically. The lock on the first ** byte allows us to drop the old write lock and get the read lock without ** another process jumping into the middle and messing us up. The same |