1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix harmless compiler warning related to the TCL8-to-TCL9 transition. This

change in testing code only and is not relevante to the core SQLite.

FossilOrigin-Name: c86ef65545485eae6aca23b4582e8115d4edfdd6084afa77858e11b21aa270f6
This commit is contained in:
drh
2024-08-10 15:05:22 +00:00
parent 6010980914
commit 4a9a5cbbe9
3 changed files with 8 additions and 8 deletions

View File

@@ -401,7 +401,7 @@ static int SQLITE_TCLAPI make_fts3record(
}
for(i=0; i<(int)nArg; i++){
sqlite3_int64 iVal;
Tcl_WideInt iVal;
if( TCL_OK==Tcl_GetWideIntFromObj(0, aArg[i], &iVal) ){
if( nOut+10>nAlloc ){
int nNew = nAlloc?nAlloc*2:128;