1
0
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:
mlcreech
2008-03-06 09:58:50 +00:00
parent 7ff4a45e4e
commit a9e852b667
13 changed files with 55 additions and 48 deletions

View File

@@ -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;