aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshaneh <shaneh@noemail.net>2011-03-15 02:55:28 +0000
committershaneh <shaneh@noemail.net>2011-03-15 02:55:28 +0000
commit9d677e15992db392950e42fa7e1cc1eb001330dd (patch)
tree2e6e184bad52e0a75c68d6212ae2db5c8b678996 /src
parent0d8abc84fad214ad8c272f2d5cffdb261c6c784b (diff)
downloadsqlite-9d677e15992db392950e42fa7e1cc1eb001330dd.tar.gz
sqlite-9d677e15992db392950e42fa7e1cc1eb001330dd.zip
Fix cut-and-paste typo in debugging print statement in winMutexTry().
FossilOrigin-Name: def98fd23e42bda13547e38ab13fed0e6554ce99
Diffstat (limited to 'src')
-rw-r--r--src/mutex_w32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex_w32.c b/src/mutex_w32.c
index 8e257a91b..bfd9dacf6 100644
--- a/src/mutex_w32.c
+++ b/src/mutex_w32.c
@@ -280,7 +280,7 @@ static int winMutexTry(sqlite3_mutex *p){
#endif
#ifdef SQLITE_DEBUG
if( rc==SQLITE_OK && p->trace ){
- printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
+ printf("try mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
}
#endif
return rc;