1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Remove "const" from parameter of sqlite3BtreeFactory() to avoid a compiler

warning.

FossilOrigin-Name: eb7a544fe49d1626bacecfe53ddc03fe082e3243
This commit is contained in:
drh
2009-11-04 13:30:01 +00:00
parent 8677d30812
commit 1860e3f98f
4 changed files with 13 additions and 13 deletions

View File

@@ -1219,7 +1219,7 @@ int sqlite3TempInMemory(const sqlite3 *db){
** The sqlite3TempInMemory() function is used to determine which.
*/
int sqlite3BtreeFactory(
const sqlite3 *db, /* Main database when opening aux otherwise 0 */
sqlite3 *db, /* Main database when opening aux otherwise 0 */
const char *zFilename, /* Name of the file containing the BTree database */
int omitJournal, /* if TRUE then do not journal this file */
int nCache, /* How many pages in the page cache */