1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Trivial modifications to prevent compiler warnings. (CVS 1606)

FossilOrigin-Name: 6001c5e1ced08096bb404e72ff533b7edcc896ec
This commit is contained in:
danielk1977
2004-06-16 12:00:29 +00:00
parent 8def5ea203
commit cfe9a69f90
8 changed files with 54 additions and 52 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.130 2004/06/16 10:39:39 danielk1977 Exp $
** @(#) $Id: pager.c,v 1.131 2004/06/16 12:01:01 danielk1977 Exp $
*/
#include "os.h" /* Must be first to enable large file support */
#include "sqliteInt.h"
@@ -1087,7 +1087,8 @@ int sqlite3pager_open(
char *zFullPathname = 0;
int nameLen;
OsFile fd;
int rc, i;
int rc = SQLITE_OK;
int i;
int tempFile = 0;
int memDb = 0;
int readOnly = 0;