Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in an error message in the CLI. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
808839808141493c1e5122f40b2cdff7 |
User & Date: | drh 2018-05-30 07:24:41 |
Context
2018-05-30
| ||
07:36 | Do not use the codec on the resetdb.test script. check-in: fe55cea0c8 user: drh tags: trunk | |
07:24 | Fix a typo in an error message in the CLI. check-in: 8088398081 user: drh tags: trunk | |
01:14 | Fix the parser so that it builds with -DSQLITE_OMIT_CTE. check-in: 86ee267ee8 user: drh tags: trunk | |
Changes
Changes to src/shell.c.in.
8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 |
/*
** Internal check: Verify that the SQLite is uninitialized. Print a
** error message if it is initialized.
*/
static void verify_uninitialized(void){
if( sqlite3_config(-1)==SQLITE_MISUSE ){
utf8_printf(stdout, "WARNING: attempt to configuration SQLite after"
" initialization.\n");
}
}
/*
** Initialize the state information in data
*/
|
| |
8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 |
/*
** Internal check: Verify that the SQLite is uninitialized. Print a
** error message if it is initialized.
*/
static void verify_uninitialized(void){
if( sqlite3_config(-1)==SQLITE_MISUSE ){
utf8_printf(stdout, "WARNING: attempt to configure SQLite after"
" initialization.\n");
}
}
/*
** Initialize the state information in data
*/
|