diff options
author | drh <drh@noemail.net> | 2014-09-12 04:28:33 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-09-12 04:28:33 +0000 |
commit | fb046e7653a1dee6e34b8b3b2ab71ebf0582de2c (patch) | |
tree | fb3a9adb371bec6788707315833658f9d611b541 /src/sqliteInt.h | |
parent | fc59a954cbce32be71da37d7ca1f447396ba39e0 (diff) | |
download | sqlite-fb046e7653a1dee6e34b8b3b2ab71ebf0582de2c.tar.gz sqlite-fb046e7653a1dee6e34b8b3b2ab71ebf0582de2c.zip |
Fix a problem with parser memory allocation on 32-bit systems.
FossilOrigin-Name: 2f69a1fa6adc9377149ae7faa586a5d30b6a631b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index e1faccb21..a254796ab 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3520,7 +3520,7 @@ int sqlite3Stat4Column(sqlite3*, const void*, int, int, sqlite3_value**); /* ** The interface to the LEMON-generated parser */ -void *sqlite3ParserAlloc(void*(*)(size_t)); +void *sqlite3ParserAlloc(void*(*)(u64)); void sqlite3ParserFree(void*, void(*)(void*)); void sqlite3Parser(void*, int, Token, Parse*); #ifdef YYTRACKMAXSTACKDEPTH |