mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Handle non-autoconf build correctly with new changes (CVS 4832)
FossilOrigin-Name: e2a9f5f1054f077e4773dd3d2c8f2ce5be118a01
This commit is contained in:
@@ -531,7 +531,7 @@ void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){
|
||||
if( n==P4_INT32 ){
|
||||
/* Note: this cast is safe, because the origin data point was an int
|
||||
** that was cast to a (const char *). */
|
||||
pOp->p4.i = (int)(intptr_t)zP4;
|
||||
pOp->p4.i = (int)(sqlite3_intptr_t)zP4;
|
||||
pOp->p4type = n;
|
||||
}else if( zP4==0 ){
|
||||
pOp->p4.p = 0;
|
||||
|
||||
Reference in New Issue
Block a user