1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Remove several compiler warnings. (CVS 6239)

FossilOrigin-Name: 85e9196d79ef8500300abb215a31e0519b2e8d02
This commit is contained in:
drh
2009-02-03 15:50:33 +00:00
parent 4b9421af6f
commit 1d34fdecb6
5 changed files with 18 additions and 15 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.523 2009/01/30 06:11:55 shane Exp $
** $Id: main.c,v 1.524 2009/02/03 15:50:34 drh Exp $
*/
#include "sqliteInt.h"
@@ -396,7 +396,7 @@ static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){
/* The size of a lookaside slot needs to be larger than a pointer
** to be useful.
*/
if( sz<=sizeof(LookasideSlot*) ) sz = 0;
if( sz<=(int)sizeof(LookasideSlot*) ) sz = 0;
if( cnt<0 ) cnt = 0;
if( sz==0 || cnt==0 ){
sz = 0;