diff options
Diffstat (limited to 'src/tokenize.c')
-rw-r--r-- | src/tokenize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tokenize.c b/src/tokenize.c index ba64ddb24..944766fbd 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.28 2001/10/18 12:34:48 drh Exp $ +** $Id: tokenize.c,v 1.29 2001/10/19 16:44:57 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -331,7 +331,7 @@ static int sqliteGetToken(const unsigned char *z, int *tokenType){ break; } for(i=1; isIdChar[z[i]]; i++){} - *tokenType = sqliteKeywordCode(z, i); + *tokenType = sqliteKeywordCode((char*)z, i); return i; } } |