aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <>2024-08-01 23:30:29 +0000
committerdrh <>2024-08-01 23:30:29 +0000
commitbb99e73ef55cd18764754509affaf333ae345d96 (patch)
tree0f4655651252e94dfc981e15946080a7cea2583e /src/tclsqlite.c
parent58c5a95c07f12a17a554da852cdbbfc0297bded8 (diff)
downloadsqlite-bb99e73ef55cd18764754509affaf333ae345d96.tar.gz
sqlite-bb99e73ef55cd18764754509affaf333ae345d96.zip
Simplification the ./configure script. Carry Makefile CFLAGS and OPTS through
into builttclext.tcl. Fix a bug in tclsqlite.c introduced by the previous check-in. FossilOrigin-Name: 72a80aa0abb121a23f8cc1eb1af04ba06c733a7a40c06f1fe9e62f2a0a26ca6e
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 51049b4d2..0c8888fd4 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -371,7 +371,7 @@ static int SQLITE_TCLAPI incrblobOutput(
/* The datatype of Tcl_DriverWideSeekProc changes between tcl8.6 and tcl9.0 */
#if TCL_MAJOR_VERSION==9
-# define WideSeekProcType long lone
+# define WideSeekProcType long long
#else
# define WideSeekProcType Tcl_WideInt
#endif