diff options
author | drh <> | 2023-10-19 20:46:22 +0000 |
---|---|---|
committer | drh <> | 2023-10-19 20:46:22 +0000 |
commit | f5e487d1685e705daa6eb79a26252f83f29c610a (patch) | |
tree | 9daed06b083dc28224a282ad899817eaf237b478 /src/mutex_unix.c | |
parent | c7ad9f65fa49b67c4ff5491f0231daa18f78afeb (diff) | |
parent | dcf76a8bbda9028c391945834d67471fc8e2821f (diff) | |
download | sqlite-f5e487d1685e705daa6eb79a26252f83f29c610a.tar.gz sqlite-f5e487d1685e705daa6eb79a26252f83f29c610a.zip |
Merge recent trunk enhancements into the jsonb branch.
FossilOrigin-Name: f47a8d0a207a8442a7f621b070ce9dd1d6013ce26bcf68165d20bb379bd478a0
Diffstat (limited to 'src/mutex_unix.c')
-rw-r--r-- | src/mutex_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex_unix.c b/src/mutex_unix.c index ac4331a67..beae877f9 100644 --- a/src/mutex_unix.c +++ b/src/mutex_unix.c @@ -223,7 +223,7 @@ static sqlite3_mutex *pthreadMutexAlloc(int iType){ */ static void pthreadMutexFree(sqlite3_mutex *p){ assert( p->nRef==0 ); -#if SQLITE_ENABLE_API_ARMOR +#ifdef SQLITE_ENABLE_API_ARMOR if( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ) #endif { |