diff options
author | drh <drh@noemail.net> | 2014-06-17 17:00:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-06-17 17:00:42 +0000 |
commit | ef3ad02d90eb16c51c3f0baa81b3976b6b60f1d2 (patch) | |
tree | b3dcedde98026098a65b60ca9017db5b05e37cd7 /src | |
parent | 03202a97f83374ff51a763ce0bd131246708fae5 (diff) | |
download | sqlite-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.c | 2 |
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 |