diff options
author | drh <drh@noemail.net> | 2020-05-27 00:02:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-05-27 00:02:07 +0000 |
commit | 399062cccbb0d14ab16e175a565e2efc1b1d0c8f (patch) | |
tree | 1167f8ce6db37120717b4da98871d87fb24bcdcf /src/expr.c | |
parent | a3d6b8e5a78c5af92620f1d96001c046fa35d920 (diff) | |
download | sqlite-399062cccbb0d14ab16e175a565e2efc1b1d0c8f.tar.gz sqlite-399062cccbb0d14ab16e175a565e2efc1b1d0c8f.zip |
Change a datatype from i16 to int to appease Converity and help eliminate
a false-positive.
FossilOrigin-Name: 5b560ec49041d89c87ea3315d8fc17f7fb0e03a82091934be7373b290183f82e
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 69cd674ef..663c15e49 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2552,7 +2552,7 @@ int sqlite3FindInIndex( if( pParse->nErr==0 && (p = isCandidateForInOpt(pX))!=0 ){ sqlite3 *db = pParse->db; /* Database connection */ Table *pTab; /* Table <table>. */ - i16 iDb; /* Database idx for pTab */ + int iDb; /* Database idx for pTab */ ExprList *pEList = p->pEList; int nExpr = pEList->nExpr; |