Fossil SCM

Fix a compiler warning caused by the previous check-in.

drh 2026-08-27 11:00 UTC trunk
Commit 5d1b6a2be231dd020c17031dea3a302fbfd3a3b07134fdca205757c9fc224345
+3 -1
--- extsrc/shell.c
+++ extsrc/shell.c
@@ -27997,13 +27997,15 @@
2799727997
ShellState *pArg /* Pointer to ShellState */
2799827998
){
2799927999
int iCur, iHiwtr;
2800028000
sqlite3_int64 iCur64, iHiwtr64;
2800128001
FILE *out;
28002
+ int bReset;
28003
+
2800228004
if( pArg==0 || pArg->out==0 ) return 0;
2800328005
out = pArg->out;
28004
- int bReset = (pArg->mStats & CLISTAT_RESET)!=0;
28006
+ bReset = (pArg->mStats & CLISTAT_RESET)!=0;
2800528007
2800628008
if( pArg->pStmt && (pArg->mStats & CLISTAT_XSTMT)!=0 ){
2800728009
int nCol, i, x;
2800828010
sqlite3_stmt *pStmt = pArg->pStmt;
2800928011
char z[100];
2801028012
--- extsrc/shell.c
+++ extsrc/shell.c
@@ -27997,13 +27997,15 @@
27997 ShellState *pArg /* Pointer to ShellState */
27998 ){
27999 int iCur, iHiwtr;
28000 sqlite3_int64 iCur64, iHiwtr64;
28001 FILE *out;
 
 
28002 if( pArg==0 || pArg->out==0 ) return 0;
28003 out = pArg->out;
28004 int bReset = (pArg->mStats & CLISTAT_RESET)!=0;
28005
28006 if( pArg->pStmt && (pArg->mStats & CLISTAT_XSTMT)!=0 ){
28007 int nCol, i, x;
28008 sqlite3_stmt *pStmt = pArg->pStmt;
28009 char z[100];
28010
--- extsrc/shell.c
+++ extsrc/shell.c
@@ -27997,13 +27997,15 @@
27997 ShellState *pArg /* Pointer to ShellState */
27998 ){
27999 int iCur, iHiwtr;
28000 sqlite3_int64 iCur64, iHiwtr64;
28001 FILE *out;
28002 int bReset;
28003
28004 if( pArg==0 || pArg->out==0 ) return 0;
28005 out = pArg->out;
28006 bReset = (pArg->mStats & CLISTAT_RESET)!=0;
28007
28008 if( pArg->pStmt && (pArg->mStats & CLISTAT_XSTMT)!=0 ){
28009 int nCol, i, x;
28010 sqlite3_stmt *pStmt = pArg->pStmt;
28011 char z[100];
28012
--- extsrc/sqlite3.c
+++ extsrc/sqlite3.c
@@ -16,11 +16,11 @@
1616
** if you want a wrapper to interface SQLite with your choice of programming
1717
** language. The code for the "sqlite3" command-line shell is also in a
1818
** separate file. This file contains only code for the core SQLite library.
1919
**
2020
** The content in this amalgamation comes from Fossil check-in
21
-** 4b30d1d7e22b9b74753a6fb4d9e1f884ddce with changes in files:
21
+** 555f31c64d3fcc55df2715a7c8c1cb28503b with changes in files:
2222
**
2323
**
2424
*/
2525
#ifndef SQLITE_AMALGAMATION
2626
#define SQLITE_CORE 1
@@ -467,14 +467,14 @@
467467
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
468468
** [sqlite_version()] and [sqlite_source_id()].
469469
*/
470470
#define SQLITE_VERSION "3.54.0"
471471
#define SQLITE_VERSION_NUMBER 3054000
472
-#define SQLITE_SOURCE_ID "2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9"
472
+#define SQLITE_SOURCE_ID "2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5"
473473
#define SQLITE_SCM_BRANCH "trunk"
474474
#define SQLITE_SCM_TAGS ""
475
-#define SQLITE_SCM_DATETIME "2026-08-27T10:31:42.047Z"
475
+#define SQLITE_SCM_DATETIME "2026-08-27T10:58:16.680Z"
476476
477477
/*
478478
** CAPI3REF: Run-Time Library Version Numbers
479479
** KEYWORDS: sqlite3_version sqlite3_sourceid
480480
**
@@ -264813,11 +264813,11 @@
264813264813
int nArg, /* Number of args */
264814264814
sqlite3_value **apUnused /* Function arguments */
264815264815
){
264816264816
assert( nArg==0 );
264817264817
UNUSED_PARAM2(nArg, apUnused);
264818
- sqlite3_result_text(pCtx, "fts5: 2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9", -1, SQLITE_TRANSIENT);
264818
+ sqlite3_result_text(pCtx, "fts5: 2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5", -1, SQLITE_TRANSIENT);
264819264819
}
264820264820
264821264821
/*
264822264822
** Implementation of fts5_locale(LOCALE, TEXT) function.
264823264823
**
264824264824
--- extsrc/sqlite3.c
+++ extsrc/sqlite3.c
@@ -16,11 +16,11 @@
16 ** if you want a wrapper to interface SQLite with your choice of programming
17 ** language. The code for the "sqlite3" command-line shell is also in a
18 ** separate file. This file contains only code for the core SQLite library.
19 **
20 ** The content in this amalgamation comes from Fossil check-in
21 ** 4b30d1d7e22b9b74753a6fb4d9e1f884ddce with changes in files:
22 **
23 **
24 */
25 #ifndef SQLITE_AMALGAMATION
26 #define SQLITE_CORE 1
@@ -467,14 +467,14 @@
467 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
468 ** [sqlite_version()] and [sqlite_source_id()].
469 */
470 #define SQLITE_VERSION "3.54.0"
471 #define SQLITE_VERSION_NUMBER 3054000
472 #define SQLITE_SOURCE_ID "2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9"
473 #define SQLITE_SCM_BRANCH "trunk"
474 #define SQLITE_SCM_TAGS ""
475 #define SQLITE_SCM_DATETIME "2026-08-27T10:31:42.047Z"
476
477 /*
478 ** CAPI3REF: Run-Time Library Version Numbers
479 ** KEYWORDS: sqlite3_version sqlite3_sourceid
480 **
@@ -264813,11 +264813,11 @@
264813 int nArg, /* Number of args */
264814 sqlite3_value **apUnused /* Function arguments */
264815 ){
264816 assert( nArg==0 );
264817 UNUSED_PARAM2(nArg, apUnused);
264818 sqlite3_result_text(pCtx, "fts5: 2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9", -1, SQLITE_TRANSIENT);
264819 }
264820
264821 /*
264822 ** Implementation of fts5_locale(LOCALE, TEXT) function.
264823 **
264824
--- extsrc/sqlite3.c
+++ extsrc/sqlite3.c
@@ -16,11 +16,11 @@
16 ** if you want a wrapper to interface SQLite with your choice of programming
17 ** language. The code for the "sqlite3" command-line shell is also in a
18 ** separate file. This file contains only code for the core SQLite library.
19 **
20 ** The content in this amalgamation comes from Fossil check-in
21 ** 555f31c64d3fcc55df2715a7c8c1cb28503b with changes in files:
22 **
23 **
24 */
25 #ifndef SQLITE_AMALGAMATION
26 #define SQLITE_CORE 1
@@ -467,14 +467,14 @@
467 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
468 ** [sqlite_version()] and [sqlite_source_id()].
469 */
470 #define SQLITE_VERSION "3.54.0"
471 #define SQLITE_VERSION_NUMBER 3054000
472 #define SQLITE_SOURCE_ID "2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5"
473 #define SQLITE_SCM_BRANCH "trunk"
474 #define SQLITE_SCM_TAGS ""
475 #define SQLITE_SCM_DATETIME "2026-08-27T10:58:16.680Z"
476
477 /*
478 ** CAPI3REF: Run-Time Library Version Numbers
479 ** KEYWORDS: sqlite3_version sqlite3_sourceid
480 **
@@ -264813,11 +264813,11 @@
264813 int nArg, /* Number of args */
264814 sqlite3_value **apUnused /* Function arguments */
264815 ){
264816 assert( nArg==0 );
264817 UNUSED_PARAM2(nArg, apUnused);
264818 sqlite3_result_text(pCtx, "fts5: 2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5", -1, SQLITE_TRANSIENT);
264819 }
264820
264821 /*
264822 ** Implementation of fts5_locale(LOCALE, TEXT) function.
264823 **
264824
--- extsrc/sqlite3.h
+++ extsrc/sqlite3.h
@@ -146,14 +146,14 @@
146146
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
147147
** [sqlite_version()] and [sqlite_source_id()].
148148
*/
149149
#define SQLITE_VERSION "3.54.0"
150150
#define SQLITE_VERSION_NUMBER 3054000
151
-#define SQLITE_SOURCE_ID "2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9"
151
+#define SQLITE_SOURCE_ID "2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5"
152152
#define SQLITE_SCM_BRANCH "trunk"
153153
#define SQLITE_SCM_TAGS ""
154
-#define SQLITE_SCM_DATETIME "2026-08-27T10:31:42.047Z"
154
+#define SQLITE_SCM_DATETIME "2026-08-27T10:58:16.680Z"
155155
156156
/*
157157
** CAPI3REF: Run-Time Library Version Numbers
158158
** KEYWORDS: sqlite3_version sqlite3_sourceid
159159
**
160160
--- extsrc/sqlite3.h
+++ extsrc/sqlite3.h
@@ -146,14 +146,14 @@
146 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
147 ** [sqlite_version()] and [sqlite_source_id()].
148 */
149 #define SQLITE_VERSION "3.54.0"
150 #define SQLITE_VERSION_NUMBER 3054000
151 #define SQLITE_SOURCE_ID "2026-08-27 10:31:42 4b30d1d7e22b9b74753a6fb4d9e1f884ddcee12273d6842954ed44de94e5f4b9"
152 #define SQLITE_SCM_BRANCH "trunk"
153 #define SQLITE_SCM_TAGS ""
154 #define SQLITE_SCM_DATETIME "2026-08-27T10:31:42.047Z"
155
156 /*
157 ** CAPI3REF: Run-Time Library Version Numbers
158 ** KEYWORDS: sqlite3_version sqlite3_sourceid
159 **
160
--- extsrc/sqlite3.h
+++ extsrc/sqlite3.h
@@ -146,14 +146,14 @@
146 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
147 ** [sqlite_version()] and [sqlite_source_id()].
148 */
149 #define SQLITE_VERSION "3.54.0"
150 #define SQLITE_VERSION_NUMBER 3054000
151 #define SQLITE_SOURCE_ID "2026-08-27 10:58:16 555f31c64d3fcc55df2715a7c8c1cb28503b2c0eb21d950ccdcbf6f577593dd5"
152 #define SQLITE_SCM_BRANCH "trunk"
153 #define SQLITE_SCM_TAGS ""
154 #define SQLITE_SCM_DATETIME "2026-08-27T10:58:16.680Z"
155
156 /*
157 ** CAPI3REF: Run-Time Library Version Numbers
158 ** KEYWORDS: sqlite3_version sqlite3_sourceid
159 **
160

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button