aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-10-15 19:03:02 +0000
committerdrh <drh@noemail.net>2008-10-15 19:03:02 +0000
commit9e885cd885ebce3fce6c86b0763ee945681ee3a2 (patch)
treecc4ea587f8773fd71a2b4aa28e46e841ae8b5d71 /src
parentd138dd8687516284324596d521c0a8a9ead84385 (diff)
downloadsqlite-9e885cd885ebce3fce6c86b0763ee945681ee3a2.tar.gz
sqlite-9e885cd885ebce3fce6c86b0763ee945681ee3a2.zip
Fix a naming problem when SQLITE_MUTEX_NOOP is used. (CVS 5827)
FossilOrigin-Name: 35ce71c6f19953a17aa37abe1c0c97685070e2f6
Diffstat (limited to 'src')
-rw-r--r--src/mutex_noop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mutex_noop.c b/src/mutex_noop.c
index 5900c4de1..ecee9a9a2 100644
--- a/src/mutex_noop.c
+++ b/src/mutex_noop.c
@@ -25,7 +25,7 @@
** that does error checking on mutexes to make sure they are being
** called correctly.
**
-** $Id: mutex_noop.c,v 1.1 2008/10/07 15:25:48 drh Exp $
+** $Id: mutex_noop.c,v 1.2 2008/10/15 19:03:03 drh Exp $
*/
#include "sqliteInt.h"
@@ -44,7 +44,7 @@ static sqlite3_mutex *noopMutexAlloc(int id){ return (sqlite3_mutex*)8; }
static void noopMutexFree(sqlite3_mutex *p){ return; }
static void noopMutexEnter(sqlite3_mutex *p){ return; }
static int noopMutexTry(sqlite3_mutex *p){ return SQLITE_OK; }
-static void debugMutexLeave(sqlite3_mutex *p){ return; }
+static void noopMutexLeave(sqlite3_mutex *p){ return; }
sqlite3_mutex_methods *sqlite3DefaultMutex(void){
static sqlite3_mutex_methods sMutex = {