mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix a harmless compiler warning in tclsqlite.c for MSVC x64. Fix a test
case associated with the FTS4 merge feature. FossilOrigin-Name: de3f7187eb2ff24683a1854ae523e7d30c290893
This commit is contained in:
@@ -1163,7 +1163,7 @@ static int dbPrepareAndBind(
|
||||
memset(pPreStmt, 0, nByte);
|
||||
|
||||
pPreStmt->pStmt = pStmt;
|
||||
pPreStmt->nSql = (*pzOut - zSql);
|
||||
pPreStmt->nSql = (int)(*pzOut - zSql);
|
||||
pPreStmt->zSql = sqlite3_sql(pStmt);
|
||||
pPreStmt->apParm = (Tcl_Obj **)&pPreStmt[1];
|
||||
#ifdef SQLITE_TEST
|
||||
|
Reference in New Issue
Block a user