aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/fs.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs.zig b/src/fs.zig
index 024c42c4f..f2b6073c2 100644
--- a/src/fs.zig
+++ b/src/fs.zig
@@ -25,8 +25,8 @@ const hash_map = @import("hash_map.zig");
pub const Preallocate = struct {
pub const Counts = struct {
- pub const dir_entry: usize = 4096;
- pub const files: usize = 8096;
+ pub const dir_entry: usize = 2048;
+ pub const files: usize = 4096;
};
};