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

Changes sqlite3TempInMemory() to take a const parameter. (CVS 6576)

FossilOrigin-Name: aa29a14ca040db25dadbca787aa75be3b7588415
This commit is contained in:
drh
2009-04-30 12:25:10 +00:00
parent d829335e42
commit 1c5141484c
4 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.543 2009/04/30 09:10:38 danielk1977 Exp $
** $Id: main.c,v 1.544 2009/04/30 12:25:10 drh Exp $
*/
#include "sqliteInt.h"
@@ -1184,7 +1184,7 @@ void *sqlite3_rollback_hook(
** 2 0 memory (return 1)
** 3 any memory (return 1)
*/
int sqlite3TempInMemory(sqlite3 *db){
int sqlite3TempInMemory(const sqlite3 *db){
#if SQLITE_TEMP_STORE==1
return ( db->temp_store==2 );
#endif