summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/filesdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filesdb.c b/src/filesdb.c
index 9c8780e46..fc8dd55fc 100644
--- a/src/filesdb.c
+++ b/src/filesdb.c
@@ -525,8 +525,8 @@ struct fileiterator {
};
/* This must always be a prime for optimal performance.
- * This is the closest one to 2^17 (131072). */
-#define BINS 131071
+ * This is the closest one to 2^18 (262144). */
+#define BINS 262139
static struct filenamenode *bins[BINS];