mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Fix signed/unsigned compiler warnings.
FossilOrigin-Name: 1d69eee8b085d514f442840346f001b4785f8ec64f5ba66943e9577b26e2e29c
This commit is contained in:
@@ -180,7 +180,7 @@ static int readsTable(Parse *p, int iDb, Table *pTab){
|
||||
assert( pOp!=0 );
|
||||
if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
|
||||
Index *pIndex;
|
||||
int tnum = pOp->p2;
|
||||
Pgno tnum = pOp->p2;
|
||||
if( tnum==pTab->tnum ){
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user