diff options
author | drh <> | 2022-02-02 11:37:49 +0000 |
---|---|---|
committer | drh <> | 2022-02-02 11:37:49 +0000 |
commit | 9ede896ac15ef680f107aa77df6ab3e7163b0093 (patch) | |
tree | d80485cf5c565aeab368491d4ed0a978bdaef25d /src | |
parent | e66532a63b934135ec9ebd72bdddcf79a3fb97a0 (diff) | |
download | sqlite-9ede896ac15ef680f107aa77df6ab3e7163b0093.tar.gz sqlite-9ede896ac15ef680f107aa77df6ab3e7163b0093.zip |
Fix a harmless code indentation issue.
FossilOrigin-Name: 41d8d26e48a440da44582763f6b0c097febe3b8ac16adb662f688c3662c301bf
Diffstat (limited to 'src')
-rw-r--r-- | src/whereexpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/whereexpr.c b/src/whereexpr.c index f54729767..e212bcb93 100644 --- a/src/whereexpr.c +++ b/src/whereexpr.c @@ -422,7 +422,7 @@ static int isAuxiliaryVtabOperator( assert( pVtab!=0 ); assert( pVtab->pModule!=0 ); assert( !ExprHasProperty(pExpr, EP_IntValue) ); - pMod = (sqlite3_module *)pVtab->pModule; + pMod = (sqlite3_module *)pVtab->pModule; if( pMod->xFindFunction!=0 ){ i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed); if( i>=SQLITE_INDEX_CONSTRAINT_FUNCTION ){ |