diff options
author | drh <drh@noemail.net> | 2012-01-02 12:41:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-01-02 12:41:53 +0000 |
commit | 7d39e17eefda200d71a32e145b0313d77e2e0c5e (patch) | |
tree | 6557f63bce511402a9c58c64df80972f1f3365af /src/util.c | |
parent | 20e226d97997702d58c3112a71d85c372a49d8d1 (diff) | |
download | sqlite-7d39e17eefda200d71a32e145b0313d77e2e0c5e.tar.gz sqlite-7d39e17eefda200d71a32e145b0313d77e2e0c5e.zip |
Fix the build so that it works when SQLITE_ENABLE_8_3_NAMES=1.
FossilOrigin-Name: d9761f15a175724c6c28a52335c979304737b188
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index a80b89a4a..fd3c858ab 100644 --- a/src/util.c +++ b/src/util.c @@ -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; |