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

Fix more compiler warnings. (CVS 5074)

FossilOrigin-Name: 59568844e774dbe89fd20bbc8f49a3665cc54717
This commit is contained in:
drh
2008-05-01 17:16:52 +00:00
parent e265b08458
commit 26e4a8b11d
8 changed files with 44 additions and 25 deletions

View File

@@ -47,6 +47,7 @@ static struct StatementLruList sqlite3LruStatements;
**
** assert( stmtLruCheck() );
*/
#ifndef NDEBUG
static int stmtLruCheck(){
Vdbe *p;
for(p=sqlite3LruStatements.pFirst; p; p=p->pLruNext){
@@ -57,6 +58,7 @@ static int stmtLruCheck(){
}
return 1;
}
#endif
/*
** Add vdbe p to the end of the statement lru list. It is assumed that