aboutsummaryrefslogtreecommitdiff
path: root/src/mem2.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-06-17 17:21:18 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-06-17 17:21:18 +0000
commit6d2ab0e4318e293000c42fb667bf0a16a198ce0e (patch)
tree07aca844bf442b2efbae6de14ec2cfc3daa81d8b /src/mem2.c
parentfacf0307921bd08c3b60b1293bcc5859eee2db10 (diff)
downloadsqlite-6d2ab0e4318e293000c42fb667bf0a16a198ce0e.tar.gz
sqlite-6d2ab0e4318e293000c42fb667bf0a16a198ce0e.zip
Change the mutex interface to be pluggable. This is an incremental checkin, there are still changes to come. (CVS 5227)
FossilOrigin-Name: 597283637bcdc2398bf249b2bbc6ded47ad2de22
Diffstat (limited to 'src/mem2.c')
-rw-r--r--src/mem2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem2.c b/src/mem2.c
index 311f02dbd..4f97ba2ce 100644
--- a/src/mem2.c
+++ b/src/mem2.c
@@ -19,7 +19,7 @@
** This file contains implementations of the low-level memory allocation
** routines specified in the sqlite3_mem_methods object.
**
-** $Id: mem2.c,v 1.30 2008/06/17 15:12:01 drh Exp $
+** $Id: mem2.c,v 1.31 2008/06/17 17:21:18 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -321,7 +321,7 @@ void sqlite3MemSetDefault(void){
/*
** Set the number of backtrace levels kept for each allocation.
-** A value of zero turns of backtracing. The number is always rounded
+** A value of zero turns off backtracing. The number is always rounded
** up to a multiple of 2.
*/
void sqlite3MemdebugBacktrace(int depth){