diff options
author | drh <> | 2024-08-10 15:05:22 +0000 |
---|---|---|
committer | drh <> | 2024-08-10 15:05:22 +0000 |
commit | 4a9a5cbbe93611bec814eac20ffacee3bc352220 (patch) | |
tree | 1e5ed80bd529de5a79061c175de4e440b3cafee0 /src | |
parent | 6010980914207275bcc82e58e534d2923667f631 (diff) | |
download | sqlite-4a9a5cbbe93611bec814eac20ffacee3bc352220.tar.gz sqlite-4a9a5cbbe93611bec814eac20ffacee3bc352220.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/test_hexio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_hexio.c b/src/test_hexio.c index 8999d84d2..3c856b330 100644 --- a/src/test_hexio.c +++ b/src/test_hexio.c @@ -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; |