aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
authorshane <shane@noemail.net>2009-03-31 03:41:56 +0000
committershane <shane@noemail.net>2009-03-31 03:41:56 +0000
commitb08a67a77237cd2b8d46bb1696980d90cafcb3f8 (patch)
tree07ff63a24db3c7cd55f01648de5b9df43ccdbc0b /src/tokenize.c
parent86655a1d2a16a82ee8f6547273ca529279002124 (diff)
downloadsqlite-b08a67a77237cd2b8d46bb1696980d90cafcb3f8.tar.gz
sqlite-b08a67a77237cd2b8d46bb1696980d90cafcb3f8.zip
Fix compiler warnings from gcc and MSVC; Correct typo in select.c; (CVS 6417)
FossilOrigin-Name: 768514179a63783c4e70b931d1697403c04bedf5
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index 60313aef4..4677811d2 100644
--- a/src/tokenize.c
+++ b/src/tokenize.c
@@ -15,7 +15,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
-** $Id: tokenize.c,v 1.154 2009/03/24 15:08:10 drh Exp $
+** $Id: tokenize.c,v 1.155 2009/03/31 03:41:57 shane Exp $
*/
#include "sqliteInt.h"
#include <stdlib.h>
@@ -386,7 +386,7 @@ int sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg){
void *pEngine; /* The LEMON-generated LALR(1) parser */
int tokenType; /* type of the next token */
int lastTokenParsed = -1; /* type of the previous token */
- int enableLookaside; /* Saved value of db->lookaside.bEnabled */
+ u8 enableLookaside; /* Saved value of db->lookaside.bEnabled */
sqlite3 *db = pParse->db; /* The database connection */
int mxSqlLen; /* Max length of an SQL string */