aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index 35ee9251f..37d7b9f53 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.74 2004/05/27 23:56:16 danielk1977 Exp $
+** $Id: tokenize.c,v 1.75 2004/05/31 18:51:58 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -702,10 +702,9 @@ int sqlite3_complete(const char *zSql){
*/
int sqlite3_complete16(const void *zSql){
int rc;
- char *zSql8 = sqlite3utf16to8(zSql, -1, SQLITE3_BIGENDIAN);
+ char *zSql8 = sqlite3utf16to8(zSql, -1, SQLITE_BIGENDIAN);
if( !zSql8 ) return 0;
rc = sqlite3_complete(zSql8);
sqliteFree(zSql8);
return rc;
}
-