aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-06-17 17:00:42 +0000
committerdrh <drh@noemail.net>2014-06-17 17:00:42 +0000
commitef3ad02d90eb16c51c3f0baa81b3976b6b60f1d2 (patch)
treeb3dcedde98026098a65b60ca9017db5b05e37cd7 /src
parent03202a97f83374ff51a763ce0bd131246708fae5 (diff)
downloadsqlite-ef3ad02d90eb16c51c3f0baa81b3976b6b60f1d2.tar.gz
sqlite-ef3ad02d90eb16c51c3f0baa81b3976b6b60f1d2.zip
Fix a missing space in a "wheretrace" comment. No changes to production code.
FossilOrigin-Name: b500f2a09721b49c95a69c47a0205bc2375af2cd
Diffstat (limited to 'src')
-rw-r--r--src/where.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c
index 5fd4618bb..1865871ed 100644
--- a/src/where.c
+++ b/src/where.c
@@ -4053,7 +4053,7 @@ static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){
*ppTail = pToDel->pNextLoop;
#if WHERETRACE_ENABLED /* 0x8 */
if( sqlite3WhereTrace & 0x8 ){
- sqlite3DebugPrintf("ins-del: ");
+ sqlite3DebugPrintf("ins-del: ");
whereLoopPrint(pToDel, pBuilder->pWC);
}
#endif