1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Make walIndexTryHdr() a private function. Fix an issue with SQLITE_MUTEX_NOOP.

FossilOrigin-Name: ec65bbd06bdd3bf16a742c5bb1fab0dce756c01a
This commit is contained in:
drh
2010-06-26 22:16:02 +00:00
parent ff82894faa
commit 7750ab48f5
4 changed files with 13 additions and 13 deletions

View File

@@ -200,7 +200,7 @@ sqlite3_mutex_methods const *sqlite3NoopMutex(void){
*/
#ifdef SQLITE_MUTEX_NOOP
sqlite3_mutex_methods const *sqlite3DefaultMutex(void){
return sqliteNoopMutex();
return sqlite3NoopMutex();
}
#endif /* SQLITE_MUTEX_NOOP */
#endif /* SQLITE_MUTEX_OMIT */