1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Change all legacy instances of "#if SQLITE_DEBUG" to "#ifdef SQLITE_DEBUG" for

consistency.

FossilOrigin-Name: 670f10b24230863688270d12ac519609ade2302b
This commit is contained in:
drh
2017-02-13 13:35:55 +00:00
parent 30a5831c45
commit d879e3eb8d
9 changed files with 23 additions and 24 deletions

View File

@@ -2198,7 +2198,7 @@ case OP_Compare: {
assert( pKeyInfo!=0 );
p1 = pOp->p1;
p2 = pOp->p2;
#if SQLITE_DEBUG
#ifdef SQLITE_DEBUG
if( aPermute ){
int k, mx = 0;
for(k=0; k<n; k++) if( aPermute[k]>mx ) mx = aPermute[k];