1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix cut-and-paste typo in debugging print statement in winMutexTry().

FossilOrigin-Name: def98fd23e42bda13547e38ab13fed0e6554ce99
This commit is contained in:
shaneh
2011-03-15 02:55:28 +00:00
parent 0d8abc84fa
commit 9d677e1599
3 changed files with 9 additions and 19 deletions

View File

@@ -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;