From 1e5e02b4f47779fe3733b1a6ab24a6ca13099ec3 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Tue, 27 Oct 2015 17:26:04 +0100 Subject: pool: Simplify implementation --- src/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/index.c') diff --git a/src/index.c b/src/index.c index d9e713899..0adc7e157 100644 --- a/src/index.c +++ b/src/index.c @@ -439,7 +439,7 @@ int git_index_open(git_index **index_out, const char *index_path) return -1; } - git_pool_init(&index->tree_pool, 1, 0); + git_pool_init(&index->tree_pool, 1); if (index_path != NULL) { index->index_file_path = git__strdup(index_path); -- cgit v1.2.1