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

Fix the build so that it works when SQLITE_ENABLE_8_3_NAMES=1.

FossilOrigin-Name: d9761f15a175724c6c28a52335c979304737b188
This commit is contained in:
drh
2012-01-02 12:41:53 +00:00
parent 20e226d979
commit 7d39e17eef
3 changed files with 8 additions and 8 deletions

View File

@@ -1173,7 +1173,7 @@ int sqlite3AbsInt32(int x){
*/
void sqlite3FileSuffix3(const char *zBaseFilename, char *z){
#if SQLITE_ENABLE_8_3_NAMES<2
if( sqlite3_uri_boolean(zBaseFilename, "8_3_names") )
if( sqlite3_uri_boolean(zBaseFilename, "8_3_names", 0) )
#endif
{
int i, sz;