diff options
author | drh <drh@noemail.net> | 2014-01-04 20:00:14 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-01-04 20:00:14 +0000 |
commit | b66e21fda587a78079413d3588da69155b538141 (patch) | |
tree | 26596f04010b01c9457bf6e07b0780664c0a4491 /src/expr.c | |
parent | 2e08486a08a41e251b594566c8ef37e51c9facf8 (diff) | |
download | sqlite-b66e21fda587a78079413d3588da69155b538141.tar.gz sqlite-b66e21fda587a78079413d3588da69155b538141.zip |
Fix an typo that breaks the build when SQLITE_ENABLE_TREE_EXPLAIN is defined.
FossilOrigin-Name: f461e2b3973d0fe6a7b8cb7a3aaab8a30b3e16c0
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 67aae870d..aad6cd1cd 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3388,7 +3388,7 @@ void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ sqlite3ExplainPrintf(pOut, "item[%d] = ", i); sqlite3ExplainPush(pOut); sqlite3ExplainExpr(pOut, pList->a[i].pExpr); - sqlite3ExplainPop(pOut, 1); + sqlite3ExplainPop(pOut); if( pList->a[i].zName ){ sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); } |