aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amat.us>2017-05-31 21:06:16 -0500
committerDavid Barksdale <amatus@amat.us>2017-05-31 21:06:16 -0500
commitbbbe0b2404d131cc0d9eda26725b65b47a7e073a (patch)
treec9836b0caf8d5aafaa43eaf34c322cb1399760f8 /src/datastore
parentb612bb0dbc760cecdb64ad5cbd4ce65979971004 (diff)
downloadgnunet-bbbe0b2404d131cc0d9eda26725b65b47a7e073a.tar.gz
gnunet-bbbe0b2404d131cc0d9eda26725b65b47a7e073a.zip
[datstore] make sqlite page_size power of two
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 323c03856..cdadfb87d 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -305,7 +305,7 @@ database_setup (const struct GNUNET_CONFIGURATION_Handle *cfg,
305 ENULL)); 305 ENULL));
306 CHECK (SQLITE_OK == 306 CHECK (SQLITE_OK ==
307 sqlite3_exec (plugin->dbh, 307 sqlite3_exec (plugin->dbh,
308 "PRAGMA page_size=4092", NULL, NULL, 308 "PRAGMA page_size=4096", NULL, NULL,
309 ENULL)); 309 ENULL));
310 310
311 CHECK (SQLITE_OK == 311 CHECK (SQLITE_OK ==