summary refs log tree commit diff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common.c b/src/common/common.c
index 3fb1c6a..5ce79ad 100644
--- a/src/common/common.c
+++ b/src/common/common.c
@@ -18,7 +18,7 @@ int (*file_ext(char *file))(struct blob *, struct userdata *) {
 }
 
 struct blob load_file(char const *const name) {
-	const size_t START_SIZE = 1;
+	const size_t START_SIZE = 8192;
 	FILE *file = fopen(name, "rb");
 	if (file == NULL) {
 		return (struct blob) {.data = NULL};