mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-16 23:02:26 +03:00
Fix several harmless compiler warnings. Fix a couple compiler issues with the shell.
FossilOrigin-Name: 8917e9f9a0802cbfb6f33e2ab1c2f98e4df5babd
This commit is contained in:
@@ -1278,7 +1278,7 @@ int sqlite3ExprIsInteger(Expr *p, int *pValue){
|
||||
case TK_UMINUS: {
|
||||
int v;
|
||||
if( sqlite3ExprIsInteger(p->pLeft, &v) ){
|
||||
assert( v!=-2147483648 );
|
||||
assert( v!=(-2147483647-1) );
|
||||
*pValue = -v;
|
||||
rc = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user